无法在 GCE 上创建 GPU 实例
Can't create GPU instances on GCE
我正在尝试在 Compute Engine 上创建一个 GPU 实例(n1-standard-2
,带有 1 个 NVIDIA T4 GPU),但从昨天开始我一直收到此错误:
Operation type [insert] failed with message "The zone 'projects/deep-learning-xxxx/zones/us-central1-a' does not have enough resources available to fulfill the request. Try a different zone, or try again later."
Google 云的这个区域似乎没有足够的 GPU 资源,但在尝试多次后,我在其他区域也遇到了同样的错误。不过,常规的非 GPU 实例运行良好。我想弄清楚是我做错了什么,还是现在 GCP 上对 GPU 实例的需求量很大。
最后,我能够毫无问题地启动 preemptible GPU 实例。所以看起来 Google Cloud 目前没有足够的 GPU 资源来保留按需 GPU VM。
GPU 未在特定 region/zone 中的 VM 上创建的原因可能是,
1.Resource 不可用。在此处检查资源可用性 GPU availability across regions and zones。
2.Quota 过度使用会限制 GPU 的创建。详情请参阅 Checking project quota。
3.Few GCP限制,可以参考Restrictions这里的列表。
您可以在 Create VM with GPU's
中查看 GPU 配额
或者,GCP 提供了一项名为 Reserving Compute Engine zonal resources 的功能,以确保您的项目拥有供将来使用的资源。
我正在尝试在 Compute Engine 上创建一个 GPU 实例(n1-standard-2
,带有 1 个 NVIDIA T4 GPU),但从昨天开始我一直收到此错误:
Operation type [insert] failed with message "The zone 'projects/deep-learning-xxxx/zones/us-central1-a' does not have enough resources available to fulfill the request. Try a different zone, or try again later."
Google 云的这个区域似乎没有足够的 GPU 资源,但在尝试多次后,我在其他区域也遇到了同样的错误。不过,常规的非 GPU 实例运行良好。我想弄清楚是我做错了什么,还是现在 GCP 上对 GPU 实例的需求量很大。
最后,我能够毫无问题地启动 preemptible GPU 实例。所以看起来 Google Cloud 目前没有足够的 GPU 资源来保留按需 GPU VM。
GPU 未在特定 region/zone 中的 VM 上创建的原因可能是,
1.Resource 不可用。在此处检查资源可用性 GPU availability across regions and zones。
2.Quota 过度使用会限制 GPU 的创建。详情请参阅 Checking project quota。
3.Few GCP限制,可以参考Restrictions这里的列表。
您可以在 Create VM with GPU's
中查看 GPU 配额或者,GCP 提供了一项名为 Reserving Compute Engine zonal resources 的功能,以确保您的项目拥有供将来使用的资源。