Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/discord-cluster-manager/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class ModalGPU(Enum):
A100 = "A100"
H100 = "H100"
B200 = "B200"
H200 = "H200"


@dataclasses.dataclass
Expand Down Expand Up @@ -115,6 +116,7 @@ class RankCriterion(Enum):
"L4": "80",
"A100": "80",
"H100": "90a",
"H200": "90a",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we enable H200 tho?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't have a strong opinion, probably not too interesting GPU so idc if we remove.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah'd rather we remove

"B200": "100",
"NVIDIA": None,
"MI300": None,
Expand Down
2 changes: 1 addition & 1 deletion src/discord-cluster-manager/modal_runner_archs.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from modal_utils import deserialize_full_result
from run_eval import FullResult, SystemInfo

gpus = ["T4", "L4", "A100-80GB", "H100!"]
gpus = ["T4", "L4", "A100-80GB", "H100!", "B200", "H200"]
for gpu in gpus:
gpu_slug = gpu.lower().split("-")[0].strip("!")
app.function(gpu=gpu, image=cuda_image, name=f"run_cuda_script_{gpu_slug}", serialized=True)(
Expand Down
Loading