Skip to content

Commit

Permalink
bump gpu resources
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuldesai1 committed Dec 6, 2024
1 parent 08b0197 commit 0809417
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/latch/resources/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ def get_v100_x1_pod() -> Pod:
"cpu": "7",
"memory": "48Gi",
"nvidia.com/gpu": 1,
"ephemeral-storage": "1500Gi",
"ephemeral-storage": "4500Gi",
},
limits={
"cpu": "7",
"memory": "48Gi",
"nvidia.com/gpu": 1,
"ephemeral-storage": "2000Gi",
"ephemeral-storage": "5000Gi",
},
)
primary_container.resources = resources
Expand Down Expand Up @@ -92,13 +92,13 @@ def get_v100_x4_pod() -> Pod:
"cpu": "30",
"memory": "230Gi",
"nvidia.com/gpu": 4,
"ephemeral-storage": "1500Gi",
"ephemeral-storage": "4500Gi",
},
limits={
"cpu": "30",
"memory": "230Gi",
"nvidia.com/gpu": 4,
"ephemeral-storage": "2000Gi",
"ephemeral-storage": "5000Gi",
},
)
primary_container.resources = resources
Expand Down Expand Up @@ -133,13 +133,13 @@ def get_v100_x8_pod() -> Pod:
"cpu": "62",
"memory": "400Gi",
"nvidia.com/gpu": 8,
"ephemeral-storage": "1500Gi",
"ephemeral-storage": "4500Gi",
},
limits={
"cpu": "62",
"memory": "400Gi",
"nvidia.com/gpu": 8,
"ephemeral-storage": "2000Gi",
"ephemeral-storage": "5000Gi",
},
)
primary_container.resources = resources
Expand Down

0 comments on commit 0809417

Please sign in to comment.