Skip to content

Commit

Permalink
reduce requests
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuldesai1 committed Dec 4, 2024
1 parent 34f2c06 commit 08b0197
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ Types of changes

# Latch SDK Changelog

## 2.54.9 - 2024-12-03

### Fixed

* Reduced cpu/memory requests to ensure large GPU pods are schedulable

## 2.54.8 - 2024-12-03

### Added
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ include = ["src/**/*.py", "src/latch_cli/services/init/*"]

[project]
name = "latch"
version = "2.54.8"
version = "2.54.9"
description = "The Latch SDK"
authors = [{ name = "Kenny Workman", email = "[email protected]" }]
maintainers = [
Expand Down
8 changes: 4 additions & 4 deletions src/latch/resources/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,14 @@ def _get_large_gpu_pod() -> Pod:
primary_container = V1Container(name="primary")
resources = V1ResourceRequirements(
requests={
"cpu": "64",
"memory": "256Gi",
"cpu": "63",
"memory": "245Gi",
"nvidia.com/gpu": "1",
"ephemeral-storage": "4500Gi",
},
limits={
"cpu": "64",
"memory": "256Gi",
"cpu": "63",
"memory": "245Gi",
"nvidia.com/gpu": "1",
"ephemeral-storage": "5000Gi",
},
Expand Down

0 comments on commit 08b0197

Please sign in to comment.