how to check gpu utilization in linux code example
Example 1: ubuntu check how many cores
cat /proc/cpuinfo | grep processor | wc -l
Example 2: get current cpu utilization in percentage linux
top -bn1 | grep "Cpu(s)" | \
sed "s/.*, *\([0-9.]*\)%* id.*/\1/" | \
awk '{print 100 - $1"%"}'