Skip to content

Commit

Permalink
fix: adjust aws_c5.18xlarge memory size
Browse files Browse the repository at this point in the history
  • Loading branch information
azzhipa committed Dec 13, 2024
1 parent c1a195a commit 704e160
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion torchx/specs/named_resources_aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ def aws_m5_2xlarge() -> Resource:

def aws_c5_18xlarge() -> Resource:
return Resource(
cpu=72, gpu=0, memMB=144 * GiB, capabilities={K8S_ITYPE: "c5.18xlarge"}
# using lower memory size than the spec since MEM_TAX is not enough for adjustment
cpu=72, gpu=0, memMB=142 * GiB, capabilities={K8S_ITYPE: "c5.18xlarge"}
)


Expand Down

0 comments on commit 704e160

Please sign in to comment.