Hi rtagaca001,
Thanks for getting back, for the regions you are looking into:
Below is the list of VM sizes in EastUS which have NVIDIA GPU.
$ az vm list-skus --location eastus --output table --query "[?contains(name, 'NC') || contains(name, 'ND') || contains(name, 'NV') || contains(name, 'NCasT4')].{Name:name, Siz
e:family, GPU:capabilities[?name=='Gpu'].value | [0]}"
Name Size
------------------------- ---------------------------
NVASv4-Type1 standardNVSv4Family
NVSv3-Type1 standardNVSv3Family
Standard_NC12s_v3 standardNCSv3Family
Standard_NC16as_T4_v3 Standard NCASv3_T4 Family
Standard_NC24ads_A100_v4 StandardNCADSA100v4Family
Standard_NC24rs_v3 standardNCSv3Family
Standard_NC24s_v3 standardNCSv3Family
Standard_NC40ads_H100_v5 StandardNCadsH100v5Family
Standard_NC48ads_A100_v4 StandardNCADSA100v4Family
Standard_NC4as_T4_v3 Standard NCASv3_T4 Family
Standard_NC64as_T4_v3 Standard NCASv3_T4 Family
Standard_NC6s_v3 standardNCSv3Family
Standard_NC80adis_H100_v5 StandardNCadsH100v5Family
Standard_NC8as_T4_v3 Standard NCASv3_T4 Family
Standard_NC96ads_A100_v4 StandardNCADSA100v4Family
Standard_ND40rs_v2 standardNDSv2Family
Standard_ND40s_v3 standardNDSv3Family
Standard_ND96amsr_A100_v4 standard NDAMSv4_A100Family
Standard_ND96asr_v4 Standard NDASv4_A100 Family
Standard_ND96isr_H100_v5 standardNDSH100v5Family
Standard_NV12ads_A10_v5 StandardNVADSA10v5Family
Standard_NV12s_v2 standardNVSv2Family
Standard_NV12s_v3 standardNVSv3Family
Standard_NV16as_v4 standardNVSv4Family
Standard_NV18ads_A10_v5 StandardNVADSA10v5Family
Standard_NV24s_v2 standardNVSv2Family
Standard_NV24s_v3 standardNVSv3Family
Standard_NV32as_v4 standardNVSv4Family
Standard_NV36adms_A10_v5 StandardNVADSA10v5Family
Standard_NV36ads_A10_v5 StandardNVADSA10v5Family
Standard_NV48s_v3 standardNVSv3Family
Standard_NV4as_v4 standardNVSv4Family
Standard_NV6ads_A10_v5 StandardNVADSA10v5Family
Standard_NV6s_v2 standardNVSv2Family
Standard_NV72ads_A10_v5 StandardNVADSA10v5Family
Standard_NV8as_v4 standardNVSv4Family
I have deployed a VM image of NVIDIA GPU-Optimized VMI - v24.10.1 - x64 Gen2 in the EastUS region with Standard ND40rs_v2. After logged into SSH and checked the GPU. The NVIDIA GPU is available in it.
Similarly, you can check with EastUS2 and deploy your VM with preferred size. You can check the availability of GPU VM sizes in your preferred location with this below command:
az vm list-skus --location <region> --output table --query "[?contains(name, 'NC') || contains(name, 'ND') || contains(name, 'NV') || contains(name, 'NCasT4')].{Name:name, Size:family, GPU:capabilities[?name=='Gpu'].value | [0]}"
If the quota is insufficient or unavailable for your preferred VM size in your location, you can raise a quota request. For your reference: Request a quota increase in the Azure portal
If you have any further queries, please let me know. If the Information is helpful to you, please click on Upvote.