mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-05 12:00:16 +00:00
13 lines
237 B
Plaintext
13 lines
237 B
Plaintext
# list all available NVIDIA devices
|
|
nvidia-smi -L
|
|
|
|
# list certain details about each GPU
|
|
nvidia-smi --query-gpu=index,name,uuid,serial --format=csv
|
|
|
|
# list GPU details
|
|
nvidia-smi -i 0 -q
|
|
|
|
# show system topology
|
|
nvidia-smi topo --matrix
|
|
|