到目前为止,我已经尝试启动现有的 GCP VM(该 VM 上连接了 NVIDIA T4 GPU)近一个月了。它之前运行良好,但现在我不断收到错误消息:
The zone '***' does not have enough resources available to fulfill the request. Try a different zone, or try again later."
这表明没有可用的 GPU。
启动另一个区域中带有 GPU 的任何虚拟机也不起作用,也无法启动其他项目中的其他现有虚拟机。但是,启动未连接任何 GPU 的虚拟机却完全正常。
所有证据都表明 GCP 没有任何可用的 GPU,但我无法相信这种情况会持续近一个月。
对此有什么见解吗?
答案1
答案2
遇到了同样的问题。由于资源不足,没有区域让我创建 GPU 机器。但是,我设法创建了一台,尝试了每个有可用 GPU 的区域:
$ for zone in {\
asia-east1-a,\
asia-east1-b,\
asia-east1-c,\
asia-northeast1-a,\
asia-northeast1-c,\
asia-northeast3-b,\
asia-northeast3-c,\
asia-south1-a,\
asia-south1-b,\
asia-southeast1-a,\
asia-southeast1-b,\
asia-southeast1-c,\
asia-southeast2-a,\
asia-southeast2-b,\
asia-southeast2-c,\
australia-southeast1-b,\
australia-southeast1-c,\
europe-west1-b,\
europe-west1-c,\
europe-west1-d,\
europe-west2-a,\
europe-west2-b,\
europe-west3-b,\
europe-west4-a,\
europe-west4-b,\
europe-west4-c,\
northamerica-northeast1-a,\
northamerica-northeast1-b,\
northamerica-northeast1-c,\
southamerica-east1-c,\
us-central1-a,\
us-central1-b,\
us-central1-c,\
us-central1-f,\
us-east1-b,\
us-east1-c,\
us-east1-d,\
us-east4-a,\
us-east4-b,\
us-east4-c,\
us-west1-a,\
us-west1-b,\
us-west2-b,\
us-west2-c,\
us-west4-a,\
us-west4-b\
}; do gcloud compute instances create gpu-machine-$zone --project=xxxx --zone=$zone --machine-type=......; done