教學課程:建立 Amazon EKS GPU定義 - AWS Batch

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

教學課程:建立 Amazon EKS GPU定義

目前僅nvidia.com/gpu支援 ,您設定的資源值必須是整數。您無法使用 GPU 的分數。如需詳細資訊,請參閱中的排程 GPUs Kubernetes 文件

若要註冊 Amazon GPU 的 EKS 任務定義,請執行下列命令。

$ cat <<EOF > ./batch-eks-gpu-jd.json { "jobDefinitionName": "MyGPUJobOnEks_Smi", "type": "container", "eksProperties": { "podProperties": { "hostNetwork": true, "containers": [ { "image": "nvcr.io/nvidia/cuda:10.2-runtime-centos7", "command": ["nvidia-smi"], "resources": { "limits": { "cpu": "1", "memory": "1024Mi", "nvidia.com/gpu": "1" } } } ] } } } EOF $ aws batch register-job-definition --cli-input-json file://./batch-eks-gpu-jd.json