Skip to content

Commit

Permalink
add 1, 2, 4 size H100's to GCP (#4456)
Browse files Browse the repository at this point in the history
* add 1, 2, 4 size H100's to GCP

* update
  • Loading branch information
sethkimmel3 authored Dec 13, 2024
1 parent 1ed40e3 commit 02fb8bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 0 additions & 3 deletions sky/clouds/service_catalog/data_fetchers/fetch_gcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions sky/clouds/service_catalog/gcp_catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -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': {
Expand Down

0 comments on commit 02fb8bd

Please sign in to comment.