GPU Stress + CPU Stress

Preparation

  • Make sure the CUDA has already installed successfuly by NVIDIA SDKManager

  • Install stress for CPU Stress

sudo apt-get update
sudo apt-get -y install stress
  • install jetson-gpu-burn for GPU Stress

sudo apt-get update
cd ~/Desktop
git clone https://github.com/anseeto/jetson-gpu-burn.git
cd jetson-gpu-burn 
make

Run

CPU Stress

# Run CPU Stress with (number of CPU Cores -1)
# Memo: 1-core CPU is reserved for GPU Stress
stress -c $(( $(nproc) - 1 ))

GPU Stress

Last updated