Hello Mathew !
Thank you for posting on Microsoft Learn.
Here’s a breakdown of the issue and what you can do to resolve or properly configure your Azure VM to recognize and use the NVIDIA Tesla V100 GPU:
Try to open Device Manager and go to Display Adapters, you should see: NVIDIA Tesla V100
if not: The driver may not be installed correctly.
Open Command Prompt as admin and run:
nvidia-smi
You should see:
1 Tesla V100 GPU
- Driver version
Memory usage
CUDA version
If nvidia-smi
returns an error or shows no devices, the driver is still not installed properly.
Another workaround, try:
nvcc --version
And then run a sample CUDA app, or use:
nvidia-smi -q -d COMPUTE
Applications won’t see individual cores (5120) directly, they see the GPU device. CUDA cores are not directly exposed like threads.
Since Tesla is a data center GPU, NVIDIA Control Panel is not relevant or required since it is designed for gaming/workstation cards.
Don’t expect display rendering or 3D visualization settings here and you can instead use nvidia-smi
, CUDA toolkit utilities and application-level settings.