Find the NVIDIA GPU architecture
CUDA >= 11.6
- Go to the terminal and type
nvidia-smi --query-gpu=compute_capto query the compute capability. - The output will look like this:
compute_cap
8.6
- Go to the terminal and type
nvidia-smi -q | grep Architecture - The output will look like this:
Product Architecture : Ampere
- Therefore, for this GPU, the architecture is Ampere and the CUDA capability is 8.6. And for pcms, you will write
AMPERE86.
CUDA < 11.6
- Go to the terminal and type
nvidia-smi -q | grep "Product Architecture" - The output will look like this:
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 515.xx.xx Driver Version: 515.xx.07 CUDA Version: 11.7 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|===============================+======================+======================|
| 0 Quadro P1000 Off | 00000000:01:00.0 On | N/A |
| 34% 41C P8 N/A / N/A | 299MiB / 4096MiB | 0% Default |
| | | N/A |
+-------------------------------+----------------------+----------------------+
From the output, you can see that the GPU is Quadro P1000. Now, go to the NVIDIA website and find the GPU Compute Capability. In this case, the compute capability is 6.1.
Each major version of Compute Capability has a corresponding architecture. This table gives the mapping between the Compute Capability and the architecture:
| Compute Capability | Architecture |
|---|---|
| 5.x | Maxwell |
| 6.x | Pascal |
| 7.x | Volta |
| 7.5 | Turing |
| 8.x | Ampere |
| 8.9 | Ada |
| 9.x | Hopper |
| 10.x | Balackwell |
Since NVIDIA changes the link to the GPU architecture documentation, it’s difficult to provide a direct link where you can find the above information. However, look here for more information:
- Therefore, for this GPU, the architecture is Pascal and the CUDA capability is 6.1. And for pcms, you will write
PASCAL61.
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.