Jtop tool1. Install Jtop2. Best performance mode2.2. Enable MAXN 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 MAXN Power Mode on Jetson will ensure that all CPU and GPU cores are turned on:
xxxxxxxxxx
sudo nvpmodel -m 2
Enabling Jetson Clocks will ensure that all CPU and GPU cores run 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: The motherboard power mode must be set to MAXN to display the strongest performance parameters!