From 02fb8bd242b65fe0e7165c8ee900ae6fe0df2150 Mon Sep 17 00:00:00 2001 From: Seth Kimmel Date: Thu, 12 Dec 2024 17:18:43 -0800 Subject: [PATCH] add 1, 2, 4 size H100's to GCP (#4456) * add 1, 2, 4 size H100's to GCP * update --- sky/clouds/service_catalog/data_fetchers/fetch_gcp.py | 3 --- sky/clouds/service_catalog/gcp_catalog.py | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sky/clouds/service_catalog/data_fetchers/fetch_gcp.py b/sky/clouds/service_catalog/data_fetchers/fetch_gcp.py index e0ec7f66042..570bc773d2e 100644 --- a/sky/clouds/service_catalog/data_fetchers/fetch_gcp.py +++ b/sky/clouds/service_catalog/data_fetchers/fetch_gcp.py @@ -476,9 +476,6 @@ def _get_gpus_for_zone(zone: str) -> 'pd.DataFrame': gpu_name = gpu_name.upper() if 'H100-80GB' in gpu_name: gpu_name = 'H100' - if count != 8: - # H100 only has 8 cards. - continue if 'H100-MEGA-80GB' in gpu_name: gpu_name = 'H100-MEGA' if count != 8: diff --git a/sky/clouds/service_catalog/gcp_catalog.py b/sky/clouds/service_catalog/gcp_catalog.py index c9e15f602dc..8521f6786cc 100644 --- a/sky/clouds/service_catalog/gcp_catalog.py +++ b/sky/clouds/service_catalog/gcp_catalog.py @@ -97,6 +97,9 @@ 8: ['g2-standard-96'], }, 'H100': { + 1: ['a3-highgpu-1g'], + 2: ['a3-highgpu-2g'], + 4: ['a3-highgpu-4g'], 8: ['a3-highgpu-8g'], }, 'H100-MEGA': {