从3月4日开始,我突然无法创建一个Cloud节点。
当我试图通过GUI创建一个TPU节点/VM时,它会在选择带有任何区域的TPU类型时崩溃。我在控制台中得到了大量JS错误:
ERROR TypeError: Cannot read properties of undefined (reading 'CP-CLOUD-TPU-V3')
m=b:90 ERROR TypeError: Cannot read properties of undefined (reading 'CP-CLOUD-TPU-V3')
m=b:90 ERROR TypeError: Cannot read properties of undefined (reading 'CP-CLOUD-TPU-V3')
m=b:90 ERROR TypeError: Cannot read properties of undefined (reading 'CP-CLOUD-TPU-V3')
m=b:90 ERROR TypeError: Cannot read properties of undefined (reading 'CP-CLOUD-TPU-V3')试图从Cloud创建TPU会导致错误代码13,其中包含任意区域或版本的组合:
gcloud alpha compute tpus tpu-vm create testnode --zone us-central1-a --accelerator-type='v3-8' --version='v2-alpha' --scopes='cloud-platform'
ERROR: (gcloud.alpha.compute.tpus.tpu-vm.create) {
"code": 13,
"message": "an internal error has occurred"
}我测试的是:
用不同的项目尝试相同的过程--相同的行为和error.
我想谷歌云-tpu 1.3.2是3月8日发布的,但我不确定这是否与我所得到的问题有关。
GCP的其他部分,如VM实例或云存储工作良好--只是TPU已经为我关闭了。
发布于 2022-03-18 17:21:30
你可以试试这个:
gcloud alpha compute tpus tpu-vm create testnode
--zone us-central1-a --accelerator-type='v3-8' --version='v2-alpha'
--scopes=https://www.googleapis.com/auth/cloud-platformtpus不支持短表单-作用域=‘云平台’。
发布于 2022-03-11 16:01:26
我能够通过云控制台使用服务帐户而不是-作用域创建TPU。
GUI仍然崩溃,但您可以通过反复单击“可抢占”复选框来创建节点。我认为可能的原因是他们从TPU中删除了作用域,并且现在后端中的某些内容与当前的GUI代码不兼容。
https://stackoverflow.com/questions/71400396
复制相似问题