Skip to content

Commit c5f207d

Browse files
[Bug] Several issues with vastai provider #142 #2566 (#2567)
* [Bug] Several issues with `vastai` provider #142 #2566 (passing `cuda_max_good` and `compute_cap`) * [Bug] Several issues with `vastai` provider #142 #2566 (migrated to `gpuhunt==0.1.5`)
1 parent 3668a17 commit c5f207d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies = [
3232
"python-multipart>=0.0.16",
3333
"filelock",
3434
"psutil",
35-
"gpuhunt>=0.1.3,<0.2.0",
35+
"gpuhunt==0.1.5",
3636
"argcomplete>=3.5.0",
3737
]
3838

src/dstack/_internal/core/backends/vastai/compute.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ def __init__(self, config: VastAIConfig):
4343
"reliability2": {"gte": 0.9},
4444
"inet_down": {"gt": 128},
4545
"verified": {"eq": True},
46-
"cuda_max_good": {"gte": 11.8},
46+
"cuda_max_good": {"gte": 12.1},
47+
"compute_cap": {"gte": 600},
4748
}
4849
)
4950
)

0 commit comments

Comments
 (0)