Skip to content

Instantly share code, notes, and snippets.

@neilwightman
Created March 3, 2025 13:54
Show Gist options
  • Select an option

  • Save neilwightman/6001902acc0387b1e204e527b1bb9e39 to your computer and use it in GitHub Desktop.

Select an option

Save neilwightman/6001902acc0387b1e204e527b1bb9e39 to your computer and use it in GitHub Desktop.
nvidia-used.sh - uses nvidia-smi and bc
#!/bin/bash
used=`nvidia-smi | grep % | cut -c 47-51 | xargs | tr -d '\n'`
max=8192
echo "scale=3;($used/$max)*100" | bc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment