Skip to content

Commit

Permalink
update accelerators.csv
Browse files Browse the repository at this point in the history
  • Loading branch information
Michaelvll committed Oct 21, 2024
1 parent c4425a5 commit b10ee55
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 39 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/update-accelerators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,20 @@ jobs:
mkdir -p catalogs/catalogs/$version
cd catalogs/catalogs/$version
mkdir -p common
python -u -c "
from sky.clouds import service_catalog
import pandas as pd
python -u -c "
from sky.clouds import service_catalog
import pandas as pd

acc_cloud = list(zip(*[
[k, list(set(info.cloud for info in infos))]
for k, infos in service_catalog.list_accelerators().items()
]))
acc_cloud = list(zip(*[
[k, sorted(list(set(info.cloud for info in infos)))]
for k, infos in service_catalog.list_accelerators().items()
]))

pd.DataFrame({
'AcceleratorName': acc_cloud[0],
'Clouds': acc_cloud[1]
}).to_csv('common/accelerators.csv', index=False)
"
pd.DataFrame({
'AcceleratorName': acc_cloud[0],
'Clouds': acc_cloud[1]
}).sort_values(by='AcceleratorName').to_csv('common/accelerators.csv', index=False)
"
- name: Commit catalog
run: |
Expand Down
57 changes: 30 additions & 27 deletions catalogs/v5/common/accelerators.csv
Original file line number Diff line number Diff line change
@@ -1,37 +1,40 @@
AcceleratorName,Clouds
A100,"['GCP', 'Azure', 'Lambda', 'AWS', 'OCI']"
A100-80GB,"['GCP', 'RunPod', 'Azure', 'Lambda', 'scp', 'AWS', 'OCI', 'Fluidstack', 'Paperspace']"
A10G,['AWS']
Gaudi HL-205,['AWS']
H100,"['GCP', 'RunPod', 'Azure', 'Lambda', 'AWS', 'Fluidstack', 'Paperspace']"
K80,"['Azure', 'AWS']"
L4,"['RunPod', 'GCP', 'AWS']"
M60,"['Azure', 'AWS']"
Radeon Pro V520,['AWS']
T4,"['GCP', 'Azure', 'AWS']"
T4g,['AWS']
V100,"['GCP', 'Azure', 'Lambda', 'AWS', 'OCI', 'IBM', 'Cudo', 'Paperspace']"
V100-32GB,"['scp', 'Paperspace', 'Azure', 'AWS']"
A10,"['Azure', 'Lambda', 'OCI']"
P100,"['GCP', 'Azure', 'OCI']"
P40,['Azure']
Radeon MI25,['Azure']
P4,['GCP']
tpu-v2,['GCP']
tpu-v3,['GCP']
tpu-v4,['GCP']
A6000,['Lambda']
RTX6000,['Lambda']
A100,"['AWS', 'Azure', 'GCP', 'Lambda', 'OCI']"
A100-80GB,"['AWS', 'Azure', 'Fluidstack', 'GCP', 'Lambda', 'OCI', 'Paperspace', 'RunPod', 'scp']"
A100-80GB-SXM,['RunPod']
A10G,['AWS']
A40,"['Cudo', 'RunPod']"
A6000,['Lambda']
Gaudi HL-205,['AWS']
H100,"['AWS', 'Azure', 'Cudo', 'Fluidstack', 'GCP', 'Lambda', 'Paperspace', 'RunPod']"
H100-MEGA,['GCP']
H100-SXM,['RunPod']
H200,['AWS']
K80,"['AWS', 'Azure']"
L4,"['AWS', 'GCP', 'RunPod']"
L40,"['Fluidstack', 'RunPod']"
L40S,['AWS']
M60,"['AWS', 'Azure']"
P100,"['GCP', 'OCI']"
P4,['GCP']
RTX3090,['RunPod']
RTX4000-Ada,['RunPod']
RTX4090,['RunPod']
RTX6000,['Lambda']
RTX6000-Ada,['RunPod']
RTXA4000,"['Fluidstack', 'Cudo', 'RunPod']"
RTXA4500,"['Cudo', 'RunPod']"
RTXA5000,"['Fluidstack', 'Cudo', 'RunPod']"
RTXA6000,"['Fluidstack', 'Cudo', 'RunPod']"
RTX3080,['Cudo']
RTXA4000,"['Fluidstack', 'RunPod']"
RTXA4500,['RunPod']
RTXA5000,"['Cudo', 'Fluidstack', 'RunPod']"
RTXA6000,"['Cudo', 'Fluidstack', 'RunPod']"
Radeon MI25,['Azure']
Radeon Pro V520,['AWS']
T4,"['AWS', 'Azure', 'GCP']"
T4g,['AWS']
V100,"['AWS', 'Azure', 'Cudo', 'GCP', 'IBM', 'Lambda', 'OCI', 'Paperspace']"
V100-32GB,"['AWS', 'Azure', 'Paperspace', 'scp']"
tpu-v2,['GCP']
tpu-v3,['GCP']
tpu-v4,['GCP']
tpu-v5litepod,['GCP']
tpu-v5p,['GCP']

0 comments on commit b10ee55

Please sign in to comment.