Answers for "how to check gpu utilization in linux"

2

ubuntu check how many cores

cat /proc/cpuinfo | grep processor | wc -l
Posted by: Guest on October-15-2020
1

get current cpu utilization in percentage linux

top -bn1 | grep "Cpu(s)" | \
           sed "s/.*, *\([0-9.]*\)%* id.*/\1/" | \
           awk '{print 100 - $1"%"}'
Posted by: Guest on January-14-2021

Code answers related to "how to check gpu utilization in linux"

Browse Popular Code Answers by Language