Skip to content

Commit 208ed86

Browse files
authored
Change default gpu count to 1.. (#2624)
1 parent 8313058 commit 208ed86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dstack/_internal/core/models/resources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def __str__(self):
126126

127127
DEFAULT_CPU_COUNT = Range[int](min=2)
128128
DEFAULT_MEMORY_SIZE = Range[Memory](min=Memory.parse("8GB"))
129-
DEFAULT_GPU_COUNT = Range[int](min=1, max=1)
129+
DEFAULT_GPU_COUNT = Range[int](min=1)
130130

131131

132132
class CPUSpec(CoreModel):

0 commit comments

Comments
 (0)