Jtop tool1. Install Jtop2. Best performance mode2.2. Enable MAX mode2.2. Enable Jetson Clocks3. Use Jtop
Jtop is a system monitoring tool developed for NVIDIA Jetson series devices. It can display the resource usage of various aspects of Jetson devices, such as CPU, GPU, memory, disk, network, etc., and can display different hardware temperatures, power consumption, frequency, etc. in real time.
sudo apt update
sudo apt install python3-pip -y
sudo pip3 install -U jetson-stats
Enabling MAX Power Mode on Jetson will ensure that all CPU and GPU cores are turned on:
xxxxxxxxxx
sudo nvpmodel -m 0
Enabling Jetson Clocks will ensure that all CPU and GPU cores are running at maximum frequency:
xxxxxxxxxx
sudo jetson_clocks
Only after restarting the system can you enter the jtop command in the terminal to start the Jtop tool:
xxxxxxxxxx
jtop
Note: Only when the motherboard power mode is selected as MAXN will the strongest performance parameters be displayed!