Maximizing Tegra X2 performance

Hi everyone,
On Tegra X1, in part 2.4 of documnet bellow:

http://developer.download.nvidia.com/embedded/L4T/r24_Release_v1.0/Docs/Tegra_Linux_Driver_Package_Release_Notes_R24.1.pdf?autho=1464348180_e6c0d91a235fa2f33b5022adae8d0dc3&file=Tegra_Linux_Driver_Package_Release_Notes_R24.1.pdf

it shows how to maximize tegra x1 performance.
Are there anyway to do the same with tegra x2? I want to maximize performance of Tx2.
Thank in advance

Check out: [url]https://devtalk.nvidia.com/default/topic/1023671/jetson-tx2/low-frame-rate-with-flir-camera-on-tx2-when-using-cudafilters-library-from-opencv/post/5208659/#5208659[/url]

Hi,
Actually I want to decode HEVC stream 4K@30fps so I want to maximize performance of TX2.
I try the method on the link jkjung13 provided as

sudo nvpmodel -m 0
sudo ./jetson_clocks.sh

At that time i check with “sudo nvpmodel -q --verbose” and the result is

NVPM VERB: parsing done for /etc/nvpmodel.conf
NVPM VERB: Current mode: NV Power Mode: MAXN
0
NVPM VERB: PARAM CPU_ONLINE: ARG CORE_1: PATH /sys/devices/system/cpu/cpu1/online: REAL_VAL: 1 CONF_VAL: 1
NVPM VERB: PARAM CPU_ONLINE: ARG CORE_2: PATH /sys/devices/system/cpu/cpu2/online: REAL_VAL: 1 CONF_VAL: 1
NVPM VERB: PARAM CPU_ONLINE: ARG CORE_3: PATH /sys/devices/system/cpu/cpu3/online: REAL_VAL: 1 CONF_VAL: 1
NVPM VERB: PARAM CPU_ONLINE: ARG CORE_4: PATH /sys/devices/system/cpu/cpu4/online: REAL_VAL: 1 CONF_VAL: 1
NVPM VERB: PARAM CPU_ONLINE: ARG CORE_5: PATH /sys/devices/system/cpu/cpu5/online: REAL_VAL: 1 CONF_VAL: 1
NVPM VERB: PARAM CPU_A57: ARG MIN_FREQ: PATH /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq: REAL_VAL: 2035200 CONF_VAL: 0
NVPM VERB: PARAM CPU_A57: ARG MAX_FREQ: PATH /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq: REAL_VAL: 2035200 CONF_VAL: 2147483647
NVPM VERB: PARAM CPU_DENVER: ARG MIN_FREQ: PATH /sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq: REAL_VAL: 2035200 CONF_VAL: 0
NVPM VERB: PARAM CPU_DENVER: ARG MAX_FREQ: PATH /sys/devices/system/cpu/cpu1/cpufreq/scaling_max_freq: REAL_VAL: 2035200 CONF_VAL: 2147483647
NVPM VERB: PARAM GPU: ARG MIN_FREQ: PATH /sys/devices/17000000.gp10b/devfreq/17000000.gp10b/min_freq: REAL_VAL: 1300500000 CONF_VAL: 0
NVPM VERB: PARAM GPU: ARG MAX_FREQ: PATH /sys/devices/17000000.gp10b/devfreq/17000000.gp10b/max_freq: REAL_VAL: 1300500000 CONF_VAL: 2147483647
NVPM VERB: PARAM EMC: ARG MAX_FREQ: PATH /sys/kernel/nvpmodel_emc_cap/emc_iso_cap: REAL_VAL: 0 CONF_VAL: 0

However, the performance of decoding is not improve, there are still alot of blocking artifact.
Are there anyone who has any suggestion to solve this problem?
Thank in advance.
P.S. I test decode on Jetson Tx1 with maximizing performance and it work well

Hi Quang_OpenStack, does artifact happen in local playback or streaming?

Dear DaneLLL,
I find out the solution.
I use udp protocol for streaming video; however because udp buffer on decoder side is too small, it drops a lot of packet.
So I need to enlarge udp buffer of TX2, then it works well.
Thank.