在 Google 云计算上启动 GPU 实例
Starting a GPU instance on Google Cloud Compute
我正在尝试像这样在 Google Compute Cloud 上设置一个 GPU 实例
gcloud compute instances create another-ubuntu-instance \
--maintenance-policy TERMINATE --restart-on-failure \
--image-project=ubuntu-os-cloud \
--image-family=ubuntu-2004-lts --machine-type=a2-highgpu-1g --zone europe-west4-b
但我收到一条错误消息:
ERROR: (gcloud.compute.instances.create) Could not fetch resource:
- Quota 'NVIDIA_A100_GPUS' exceeded. Limit: 0.0 in region europe-west4.
尽管我有配额(我认为):
那么,我做错了什么?
您可以使用以下命令检查活动项目在特定区域的配额:
gcloud compute regions describe europe-west4 | grep -1 A100
阅读有关 GPU 配额的更多信息please see here
为了回答您上次的验证,这里有一些文档可以解释您遇到的错误。
如果您使用的是 Google Cloud's Free 程序之一,则每个程序都有限制和条件。
有关可用于 Compute Engine 和图形工作负载的 GPU 的更多信息information,以及它们在哪些区域和地区可用。
正如我在上面的评论中所讨论的,您可以请求 quota increase 到 Google
我正在尝试像这样在 Google Compute Cloud 上设置一个 GPU 实例
gcloud compute instances create another-ubuntu-instance \
--maintenance-policy TERMINATE --restart-on-failure \
--image-project=ubuntu-os-cloud \
--image-family=ubuntu-2004-lts --machine-type=a2-highgpu-1g --zone europe-west4-b
但我收到一条错误消息:
ERROR: (gcloud.compute.instances.create) Could not fetch resource:
- Quota 'NVIDIA_A100_GPUS' exceeded. Limit: 0.0 in region europe-west4.
尽管我有配额(我认为):
那么,我做错了什么?
您可以使用以下命令检查活动项目在特定区域的配额:
gcloud compute regions describe europe-west4 | grep -1 A100
阅读有关 GPU 配额的更多信息please see here
为了回答您上次的验证,这里有一些文档可以解释您遇到的错误。
如果您使用的是 Google Cloud's Free 程序之一,则每个程序都有限制和条件。
有关可用于 Compute Engine 和图形工作负载的 GPU 的更多信息information,以及它们在哪些区域和地区可用。
正如我在上面的评论中所讨论的,您可以请求 quota increase 到 Google