jetson TX2 query version information, GPU occupancy, turn on power mode and other operations

1. Jetson TX2 turns on power mode

On versions before JetPack4.2, there will be a jetson_clocks.sh under the /home file. If you want to turn on the high power mode, use the command line directly

sudo ~/jetson_clocks.sh

After JetPack4.2, under the /usr/bin/jetson_clocks directory, it has been integrated into a software, and the small fan can be started by directly executing it, and the temperature will drop instantly.

cd  /usr/bin/
./jetson_clocks

2. Query device GPU, CPU and other information

sudo jtop

3. Inquire about jetson device version and other information

git clone https://github.com/jetsonhacks/jetsonUtilities
cd jetsonUtilities
python jetsonInfo.py

Guess you like

Origin blog.csdn.net/hongge_smile/article/details/108635156