dstack 0.19.28__py3-none-any.whl → 0.19.30rc1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of dstack might be problematic. Click here for more details.

Files changed (43) hide show
  1. dstack/_internal/core/backends/aws/compute.py +51 -36
  2. dstack/_internal/core/backends/azure/compute.py +10 -7
  3. dstack/_internal/core/backends/base/compute.py +96 -14
  4. dstack/_internal/core/backends/base/offers.py +34 -4
  5. dstack/_internal/core/backends/cloudrift/compute.py +5 -7
  6. dstack/_internal/core/backends/cudo/compute.py +4 -2
  7. dstack/_internal/core/backends/datacrunch/compute.py +13 -11
  8. dstack/_internal/core/backends/digitalocean_base/compute.py +4 -5
  9. dstack/_internal/core/backends/gcp/compute.py +12 -7
  10. dstack/_internal/core/backends/hotaisle/compute.py +4 -7
  11. dstack/_internal/core/backends/kubernetes/compute.py +6 -4
  12. dstack/_internal/core/backends/lambdalabs/compute.py +4 -5
  13. dstack/_internal/core/backends/local/compute.py +1 -3
  14. dstack/_internal/core/backends/nebius/compute.py +10 -7
  15. dstack/_internal/core/backends/oci/compute.py +10 -7
  16. dstack/_internal/core/backends/runpod/compute.py +15 -6
  17. dstack/_internal/core/backends/template/compute.py.jinja +3 -1
  18. dstack/_internal/core/backends/tensordock/compute.py +1 -3
  19. dstack/_internal/core/backends/tensordock/models.py +2 -0
  20. dstack/_internal/core/backends/vastai/compute.py +7 -3
  21. dstack/_internal/core/backends/vultr/compute.py +5 -5
  22. dstack/_internal/core/models/projects.py +8 -0
  23. dstack/_internal/core/services/repos.py +2 -1
  24. dstack/_internal/server/background/tasks/process_instances.py +3 -2
  25. dstack/_internal/server/background/tasks/process_submitted_jobs.py +65 -22
  26. dstack/_internal/server/services/backends/__init__.py +1 -1
  27. dstack/_internal/server/services/projects.py +11 -3
  28. dstack/_internal/server/services/runs.py +2 -0
  29. dstack/_internal/server/statics/index.html +1 -1
  30. dstack/_internal/server/statics/main-56191fbfe77f49b251de.css +3 -0
  31. dstack/_internal/server/statics/{main-a2a16772fbf11a14d191.js → main-c51afa7f243e24d3e446.js} +61081 -49037
  32. dstack/_internal/server/statics/{main-a2a16772fbf11a14d191.js.map → main-c51afa7f243e24d3e446.js.map} +1 -1
  33. dstack/version.py +1 -1
  34. {dstack-0.19.28.dist-info → dstack-0.19.30rc1.dist-info}/METADATA +1 -1
  35. {dstack-0.19.28.dist-info → dstack-0.19.30rc1.dist-info}/RECORD +38 -42
  36. dstack/_internal/core/backends/tensordock/__init__.py +0 -0
  37. dstack/_internal/core/backends/tensordock/api_client.py +0 -104
  38. dstack/_internal/core/backends/tensordock/backend.py +0 -16
  39. dstack/_internal/core/backends/tensordock/configurator.py +0 -74
  40. dstack/_internal/server/statics/main-5e0d56245c4bd241ec27.css +0 -3
  41. {dstack-0.19.28.dist-info → dstack-0.19.30rc1.dist-info}/WHEEL +0 -0
  42. {dstack-0.19.28.dist-info → dstack-0.19.30rc1.dist-info}/entry_points.txt +0 -0
  43. {dstack-0.19.28.dist-info → dstack-0.19.30rc1.dist-info}/licenses/LICENSE.md +0 -0
@@ -1,6 +1,6 @@
1
1
  import threading
2
2
  from concurrent.futures import ThreadPoolExecutor, as_completed
3
- from typing import Any, Dict, List, Optional, Tuple
3
+ from typing import Any, Callable, Dict, List, Optional, Tuple
4
4
 
5
5
  import boto3
6
6
  import botocore.client
@@ -18,6 +18,7 @@ from dstack._internal.core.backends.aws.models import (
18
18
  )
19
19
  from dstack._internal.core.backends.base.compute import (
20
20
  Compute,
21
+ ComputeWithAllOffersCached,
21
22
  ComputeWithCreateInstanceSupport,
22
23
  ComputeWithGatewaySupport,
23
24
  ComputeWithMultinodeSupport,
@@ -32,7 +33,7 @@ from dstack._internal.core.backends.base.compute import (
32
33
  get_user_data,
33
34
  merge_tags,
34
35
  )
35
- from dstack._internal.core.backends.base.offers import get_catalog_offers
36
+ from dstack._internal.core.backends.base.offers import get_catalog_offers, get_offers_disk_modifier
36
37
  from dstack._internal.core.errors import (
37
38
  ComputeError,
38
39
  NoCapacityError,
@@ -87,6 +88,7 @@ def _ec2client_cache_methodkey(self, ec2_client, *args, **kwargs):
87
88
 
88
89
 
89
90
  class AWSCompute(
91
+ ComputeWithAllOffersCached,
90
92
  ComputeWithCreateInstanceSupport,
91
93
  ComputeWithMultinodeSupport,
92
94
  ComputeWithReservationSupport,
@@ -109,6 +111,8 @@ class AWSCompute(
109
111
  # Caches to avoid redundant API calls when provisioning many instances
110
112
  # get_offers is already cached but we still cache its sub-functions
111
113
  # with more aggressive/longer caches.
114
+ self._offers_post_filter_cache_lock = threading.Lock()
115
+ self._offers_post_filter_cache = TTLCache(maxsize=10, ttl=180)
112
116
  self._get_regions_to_quotas_cache_lock = threading.Lock()
113
117
  self._get_regions_to_quotas_execution_lock = threading.Lock()
114
118
  self._get_regions_to_quotas_cache = TTLCache(maxsize=10, ttl=300)
@@ -125,43 +129,11 @@ class AWSCompute(
125
129
  self._get_image_id_and_username_cache_lock = threading.Lock()
126
130
  self._get_image_id_and_username_cache = TTLCache(maxsize=100, ttl=600)
127
131
 
128
- def get_offers(
129
- self, requirements: Optional[Requirements] = None
130
- ) -> List[InstanceOfferWithAvailability]:
131
- filter = _supported_instances
132
- if requirements and requirements.reservation:
133
- region_to_reservation = {}
134
- for region in self.config.regions:
135
- reservation = aws_resources.get_reservation(
136
- ec2_client=self.session.client("ec2", region_name=region),
137
- reservation_id=requirements.reservation,
138
- instance_count=1,
139
- )
140
- if reservation is not None:
141
- region_to_reservation[region] = reservation
142
-
143
- def _supported_instances_with_reservation(offer: InstanceOffer) -> bool:
144
- # Filter: only instance types supported by dstack
145
- if not _supported_instances(offer):
146
- return False
147
- # Filter: Spot instances can't be used with reservations
148
- if offer.instance.resources.spot:
149
- return False
150
- region = offer.region
151
- reservation = region_to_reservation.get(region)
152
- # Filter: only instance types matching the capacity reservation
153
- if not bool(reservation and offer.instance.name == reservation["InstanceType"]):
154
- return False
155
- return True
156
-
157
- filter = _supported_instances_with_reservation
158
-
132
+ def get_all_offers_with_availability(self) -> List[InstanceOfferWithAvailability]:
159
133
  offers = get_catalog_offers(
160
134
  backend=BackendType.AWS,
161
135
  locations=self.config.regions,
162
- requirements=requirements,
163
- configurable_disk_size=CONFIGURABLE_DISK_SIZE,
164
- extra_filter=filter,
136
+ extra_filter=_supported_instances,
165
137
  )
166
138
  regions = list(set(i.region for i in offers))
167
139
  with self._get_regions_to_quotas_execution_lock:
@@ -185,6 +157,49 @@ class AWSCompute(
185
157
  )
186
158
  return availability_offers
187
159
 
160
+ def get_offers_modifier(
161
+ self, requirements: Requirements
162
+ ) -> Callable[[InstanceOfferWithAvailability], Optional[InstanceOfferWithAvailability]]:
163
+ return get_offers_disk_modifier(CONFIGURABLE_DISK_SIZE, requirements)
164
+
165
+ def _get_offers_cached_key(self, requirements: Requirements) -> int:
166
+ # Requirements is not hashable, so we use a hack to get arguments hash
167
+ return hash(requirements.json())
168
+
169
+ @cachedmethod(
170
+ cache=lambda self: self._offers_post_filter_cache,
171
+ key=_get_offers_cached_key,
172
+ lock=lambda self: self._offers_post_filter_cache_lock,
173
+ )
174
+ def get_offers_post_filter(
175
+ self, requirements: Requirements
176
+ ) -> Optional[Callable[[InstanceOfferWithAvailability], bool]]:
177
+ if requirements.reservation:
178
+ region_to_reservation = {}
179
+ for region in get_or_error(self.config.regions):
180
+ reservation = aws_resources.get_reservation(
181
+ ec2_client=self.session.client("ec2", region_name=region),
182
+ reservation_id=requirements.reservation,
183
+ instance_count=1,
184
+ )
185
+ if reservation is not None:
186
+ region_to_reservation[region] = reservation
187
+
188
+ def reservation_filter(offer: InstanceOfferWithAvailability) -> bool:
189
+ # Filter: Spot instances can't be used with reservations
190
+ if offer.instance.resources.spot:
191
+ return False
192
+ region = offer.region
193
+ reservation = region_to_reservation.get(region)
194
+ # Filter: only instance types matching the capacity reservation
195
+ if not bool(reservation and offer.instance.name == reservation["InstanceType"]):
196
+ return False
197
+ return True
198
+
199
+ return reservation_filter
200
+
201
+ return None
202
+
188
203
  def terminate_instance(
189
204
  self, instance_id: str, region: str, backend_data: Optional[str] = None
190
205
  ) -> None:
@@ -2,7 +2,7 @@ import base64
2
2
  import enum
3
3
  import re
4
4
  from concurrent.futures import ThreadPoolExecutor, as_completed
5
- from typing import Dict, List, Optional, Tuple
5
+ from typing import Callable, Dict, List, Optional, Tuple
6
6
 
7
7
  from azure.core.credentials import TokenCredential
8
8
  from azure.core.exceptions import ResourceExistsError, ResourceNotFoundError
@@ -39,6 +39,7 @@ from dstack._internal.core.backends.azure import utils as azure_utils
39
39
  from dstack._internal.core.backends.azure.models import AzureConfig
40
40
  from dstack._internal.core.backends.base.compute import (
41
41
  Compute,
42
+ ComputeWithAllOffersCached,
42
43
  ComputeWithCreateInstanceSupport,
43
44
  ComputeWithGatewaySupport,
44
45
  ComputeWithMultinodeSupport,
@@ -48,7 +49,7 @@ from dstack._internal.core.backends.base.compute import (
48
49
  get_user_data,
49
50
  merge_tags,
50
51
  )
51
- from dstack._internal.core.backends.base.offers import get_catalog_offers
52
+ from dstack._internal.core.backends.base.offers import get_catalog_offers, get_offers_disk_modifier
52
53
  from dstack._internal.core.errors import ComputeError, NoCapacityError
53
54
  from dstack._internal.core.models.backends.base import BackendType
54
55
  from dstack._internal.core.models.gateways import (
@@ -73,6 +74,7 @@ CONFIGURABLE_DISK_SIZE = Range[Memory](min=Memory.parse("30GB"), max=Memory.pars
73
74
 
74
75
 
75
76
  class AzureCompute(
77
+ ComputeWithAllOffersCached,
76
78
  ComputeWithCreateInstanceSupport,
77
79
  ComputeWithMultinodeSupport,
78
80
  ComputeWithGatewaySupport,
@@ -89,14 +91,10 @@ class AzureCompute(
89
91
  credential=credential, subscription_id=config.subscription_id
90
92
  )
91
93
 
92
- def get_offers(
93
- self, requirements: Optional[Requirements] = None
94
- ) -> List[InstanceOfferWithAvailability]:
94
+ def get_all_offers_with_availability(self) -> List[InstanceOfferWithAvailability]:
95
95
  offers = get_catalog_offers(
96
96
  backend=BackendType.AZURE,
97
97
  locations=self.config.regions,
98
- requirements=requirements,
99
- configurable_disk_size=CONFIGURABLE_DISK_SIZE,
100
98
  extra_filter=_supported_instances,
101
99
  )
102
100
  offers_with_availability = _get_offers_with_availability(
@@ -106,6 +104,11 @@ class AzureCompute(
106
104
  )
107
105
  return offers_with_availability
108
106
 
107
+ def get_offers_modifier(
108
+ self, requirements: Requirements
109
+ ) -> Callable[[InstanceOfferWithAvailability], Optional[InstanceOfferWithAvailability]]:
110
+ return get_offers_disk_modifier(CONFIGURABLE_DISK_SIZE, requirements)
111
+
109
112
  def create_instance(
110
113
  self,
111
114
  instance_offer: InstanceOfferWithAvailability,
@@ -7,7 +7,7 @@ from abc import ABC, abstractmethod
7
7
  from collections.abc import Iterable
8
8
  from functools import lru_cache
9
9
  from pathlib import Path
10
- from typing import Dict, List, Literal, Optional
10
+ from typing import Callable, Dict, List, Literal, Optional
11
11
 
12
12
  import git
13
13
  import requests
@@ -15,6 +15,7 @@ import yaml
15
15
  from cachetools import TTLCache, cachedmethod
16
16
 
17
17
  from dstack._internal import settings
18
+ from dstack._internal.core.backends.base.offers import filter_offers_by_requirements
18
19
  from dstack._internal.core.consts import (
19
20
  DSTACK_RUNNER_HTTP_PORT,
20
21
  DSTACK_RUNNER_SSH_PORT,
@@ -57,14 +58,8 @@ class Compute(ABC):
57
58
  If a compute supports additional features, it must also subclass `ComputeWith*` classes.
58
59
  """
59
60
 
60
- def __init__(self):
61
- self._offers_cache_lock = threading.Lock()
62
- self._offers_cache = TTLCache(maxsize=10, ttl=180)
63
-
64
61
  @abstractmethod
65
- def get_offers(
66
- self, requirements: Optional[Requirements] = None
67
- ) -> List[InstanceOfferWithAvailability]:
62
+ def get_offers(self, requirements: Requirements) -> List[InstanceOfferWithAvailability]:
68
63
  """
69
64
  Returns offers with availability matching `requirements`.
70
65
  If the provider is added to gpuhunt, typically gets offers using `base.offers.get_catalog_offers()`
@@ -121,10 +116,97 @@ class Compute(ABC):
121
116
  """
122
117
  pass
123
118
 
124
- def _get_offers_cached_key(self, requirements: Optional[Requirements] = None) -> int:
119
+
120
+ class ComputeWithAllOffersCached(ABC):
121
+ """
122
+ Provides common `get_offers()` implementation for backends
123
+ whose offers do not depend on requirements.
124
+ It caches all offers with availability and post-filters by requirements.
125
+ """
126
+
127
+ def __init__(self) -> None:
128
+ super().__init__()
129
+ self._offers_cache_lock = threading.Lock()
130
+ self._offers_cache = TTLCache(maxsize=1, ttl=180)
131
+
132
+ @abstractmethod
133
+ def get_all_offers_with_availability(self) -> List[InstanceOfferWithAvailability]:
134
+ """
135
+ Returns all backend offers with availability.
136
+ """
137
+ pass
138
+
139
+ def get_offers_modifier(
140
+ self, requirements: Requirements
141
+ ) -> Optional[
142
+ Callable[[InstanceOfferWithAvailability], Optional[InstanceOfferWithAvailability]]
143
+ ]:
144
+ """
145
+ Returns a modifier function that modifies offers before they are filtered by requirements.
146
+ Can return `None` to exclude the offer.
147
+ E.g. can be used to set appropriate disk size based on requirements.
148
+ """
149
+ return None
150
+
151
+ def get_offers_post_filter(
152
+ self, requirements: Requirements
153
+ ) -> Optional[Callable[[InstanceOfferWithAvailability], bool]]:
154
+ """
155
+ Returns a filter function to apply to offers based on requirements.
156
+ This allows backends to implement custom post-filtering logic for specific requirements.
157
+ """
158
+ return None
159
+
160
+ def get_offers(self, requirements: Requirements) -> List[InstanceOfferWithAvailability]:
161
+ offers = self._get_all_offers_with_availability_cached()
162
+ modifier = self.get_offers_modifier(requirements)
163
+ if modifier is not None:
164
+ modified_offers = []
165
+ for o in offers:
166
+ modified_offer = modifier(o)
167
+ if modified_offer is not None:
168
+ modified_offers.append(modified_offer)
169
+ offers = modified_offers
170
+ offers = filter_offers_by_requirements(offers, requirements)
171
+ post_filter = self.get_offers_post_filter(requirements)
172
+ if post_filter is not None:
173
+ offers = [o for o in offers if post_filter(o)]
174
+ return offers
175
+
176
+ @cachedmethod(
177
+ cache=lambda self: self._offers_cache,
178
+ lock=lambda self: self._offers_cache_lock,
179
+ )
180
+ def _get_all_offers_with_availability_cached(self) -> List[InstanceOfferWithAvailability]:
181
+ return self.get_all_offers_with_availability()
182
+
183
+
184
+ class ComputeWithFilteredOffersCached(ABC):
185
+ """
186
+ Provides common `get_offers()` implementation for backends
187
+ whose offers depend on requirements.
188
+ It caches offers using requirements as key.
189
+ """
190
+
191
+ def __init__(self) -> None:
192
+ super().__init__()
193
+ self._offers_cache_lock = threading.Lock()
194
+ self._offers_cache = TTLCache(maxsize=10, ttl=180)
195
+
196
+ @abstractmethod
197
+ def get_offers_by_requirements(
198
+ self, requirements: Requirements
199
+ ) -> List[InstanceOfferWithAvailability]:
200
+ """
201
+ Returns backend offers with availability matching requirements.
202
+ """
203
+ pass
204
+
205
+ def get_offers(self, requirements: Requirements) -> List[InstanceOfferWithAvailability]:
206
+ return self._get_offers_cached(requirements)
207
+
208
+ def _get_offers_cached_key(self, requirements: Requirements) -> int:
125
209
  # Requirements is not hashable, so we use a hack to get arguments hash
126
- if requirements is None:
127
- return hash(None)
128
210
  return hash(requirements.json())
129
211
 
130
212
  @cachedmethod(
@@ -132,10 +214,10 @@ class Compute(ABC):
132
214
  key=_get_offers_cached_key,
133
215
  lock=lambda self: self._offers_cache_lock,
134
216
  )
135
- def get_offers_cached(
136
- self, requirements: Optional[Requirements] = None
217
+ def _get_offers_cached(
218
+ self, requirements: Requirements
137
219
  ) -> List[InstanceOfferWithAvailability]:
138
- return self.get_offers(requirements)
220
+ return self.get_offers_by_requirements(requirements)
139
221
 
140
222
 
141
223
  class ComputeWithCreateInstanceSupport(ABC):
@@ -1,5 +1,5 @@
1
1
  from dataclasses import asdict
2
- from typing import Callable, List, Optional
2
+ from typing import Callable, List, Optional, TypeVar
3
3
 
4
4
  import gpuhunt
5
5
  from pydantic import parse_obj_as
@@ -9,11 +9,13 @@ from dstack._internal.core.models.instances import (
9
9
  Disk,
10
10
  Gpu,
11
11
  InstanceOffer,
12
+ InstanceOfferWithAvailability,
12
13
  InstanceType,
13
14
  Resources,
14
15
  )
15
16
  from dstack._internal.core.models.resources import DEFAULT_DISK, CPUSpec, Memory, Range
16
17
  from dstack._internal.core.models.runs import Requirements
18
+ from dstack._internal.utils.common import get_or_error
17
19
 
18
20
  # Offers not supported by all dstack versions are hidden behind one or more flags.
19
21
  # This list enables the flags that are currently supported.
@@ -163,9 +165,13 @@ def requirements_to_query_filter(req: Optional[Requirements]) -> gpuhunt.QueryFi
163
165
  return q
164
166
 
165
167
 
166
- def match_requirements(
167
- offers: List[InstanceOffer], requirements: Optional[Requirements]
168
- ) -> List[InstanceOffer]:
168
+ InstanceOfferT = TypeVar("InstanceOfferT", InstanceOffer, InstanceOfferWithAvailability)
169
+
170
+
171
+ def filter_offers_by_requirements(
172
+ offers: List[InstanceOfferT],
173
+ requirements: Optional[Requirements],
174
+ ) -> List[InstanceOfferT]:
169
175
  query_filter = requirements_to_query_filter(requirements)
170
176
  filtered_offers = []
171
177
  for offer in offers:
@@ -190,3 +196,27 @@ def choose_disk_size_mib(
190
196
  disk_size_gib = disk_size_range.min
191
197
 
192
198
  return round(disk_size_gib * 1024)
199
+
200
+
201
+ def get_offers_disk_modifier(
202
+ configurable_disk_size: Range[Memory], requirements: Requirements
203
+ ) -> Callable[[InstanceOfferWithAvailability], Optional[InstanceOfferWithAvailability]]:
204
+ """
205
+ Returns a func that modifies offers disk by setting min value that satisfies both
206
+ `configurable_disk_size` and `requirements`.
207
+ """
208
+
209
+ def modifier(offer: InstanceOfferWithAvailability) -> Optional[InstanceOfferWithAvailability]:
210
+ requirements_disk_range = DEFAULT_DISK.size
211
+ if requirements.resources.disk is not None:
212
+ requirements_disk_range = requirements.resources.disk.size
213
+ disk_size_range = requirements_disk_range.intersect(configurable_disk_size)
214
+ if disk_size_range is None:
215
+ return None
216
+ offer_copy = offer.copy(deep=True)
217
+ offer_copy.instance.resources.disk = Disk(
218
+ size_mib=get_or_error(disk_size_range.min) * 1024
219
+ )
220
+ return offer_copy
221
+
222
+ return modifier
@@ -1,7 +1,8 @@
1
1
  from typing import Dict, List, Optional
2
2
 
3
- from dstack._internal.core.backends.base.backend import Compute
4
3
  from dstack._internal.core.backends.base.compute import (
4
+ Compute,
5
+ ComputeWithAllOffersCached,
5
6
  ComputeWithCreateInstanceSupport,
6
7
  get_shim_commands,
7
8
  )
@@ -17,13 +18,14 @@ from dstack._internal.core.models.instances import (
17
18
  InstanceOfferWithAvailability,
18
19
  )
19
20
  from dstack._internal.core.models.placement import PlacementGroup
20
- from dstack._internal.core.models.runs import JobProvisioningData, Requirements
21
+ from dstack._internal.core.models.runs import JobProvisioningData
21
22
  from dstack._internal.utils.logging import get_logger
22
23
 
23
24
  logger = get_logger(__name__)
24
25
 
25
26
 
26
27
  class CloudRiftCompute(
28
+ ComputeWithAllOffersCached,
27
29
  ComputeWithCreateInstanceSupport,
28
30
  Compute,
29
31
  ):
@@ -32,15 +34,11 @@ class CloudRiftCompute(
32
34
  self.config = config
33
35
  self.client = RiftClient(self.config.creds.api_key)
34
36
 
35
- def get_offers(
36
- self, requirements: Optional[Requirements] = None
37
- ) -> List[InstanceOfferWithAvailability]:
37
+ def get_all_offers_with_availability(self) -> List[InstanceOfferWithAvailability]:
38
38
  offers = get_catalog_offers(
39
39
  backend=BackendType.CLOUDRIFT,
40
40
  locations=self.config.regions or None,
41
- requirements=requirements,
42
41
  )
43
-
44
42
  offers_with_availabilities = self._get_offers_with_availability(offers)
45
43
  return offers_with_availabilities
46
44
 
@@ -5,6 +5,7 @@ import requests
5
5
  from dstack._internal.core.backends.base.backend import Compute
6
6
  from dstack._internal.core.backends.base.compute import (
7
7
  ComputeWithCreateInstanceSupport,
8
+ ComputeWithFilteredOffersCached,
8
9
  generate_unique_instance_name,
9
10
  get_shim_commands,
10
11
  )
@@ -29,6 +30,7 @@ MAX_RESOURCE_NAME_LEN = 30
29
30
 
30
31
 
31
32
  class CudoCompute(
33
+ ComputeWithFilteredOffersCached,
32
34
  ComputeWithCreateInstanceSupport,
33
35
  Compute,
34
36
  ):
@@ -37,8 +39,8 @@ class CudoCompute(
37
39
  self.config = config
38
40
  self.api_client = CudoApiClient(config.creds.api_key)
39
41
 
40
- def get_offers(
41
- self, requirements: Optional[Requirements] = None
42
+ def get_offers_by_requirements(
43
+ self, requirements: Requirements
42
44
  ) -> List[InstanceOfferWithAvailability]:
43
45
  offers = get_catalog_offers(
44
46
  backend=BackendType.CUDO,
@@ -1,4 +1,4 @@
1
- from typing import Dict, List, Optional
1
+ from typing import Callable, Dict, List, Optional
2
2
 
3
3
  from datacrunch import DataCrunchClient
4
4
  from datacrunch.exceptions import APIException
@@ -6,11 +6,12 @@ from datacrunch.instances.instances import Instance
6
6
 
7
7
  from dstack._internal.core.backends.base.backend import Compute
8
8
  from dstack._internal.core.backends.base.compute import (
9
+ ComputeWithAllOffersCached,
9
10
  ComputeWithCreateInstanceSupport,
10
11
  generate_unique_instance_name,
11
12
  get_shim_commands,
12
13
  )
13
- from dstack._internal.core.backends.base.offers import get_catalog_offers
14
+ from dstack._internal.core.backends.base.offers import get_catalog_offers, get_offers_disk_modifier
14
15
  from dstack._internal.core.backends.datacrunch.models import DataCrunchConfig
15
16
  from dstack._internal.core.errors import NoCapacityError
16
17
  from dstack._internal.core.models.backends.base import BackendType
@@ -36,6 +37,7 @@ CONFIGURABLE_DISK_SIZE = Range[Memory](min=IMAGE_SIZE, max=None)
36
37
 
37
38
 
38
39
  class DataCrunchCompute(
40
+ ComputeWithAllOffersCached,
39
41
  ComputeWithCreateInstanceSupport,
40
42
  Compute,
41
43
  ):
@@ -47,18 +49,19 @@ class DataCrunchCompute(
47
49
  client_secret=self.config.creds.client_secret,
48
50
  )
49
51
 
50
- def get_offers(
51
- self, requirements: Optional[Requirements] = None
52
- ) -> List[InstanceOfferWithAvailability]:
52
+ def get_all_offers_with_availability(self) -> List[InstanceOfferWithAvailability]:
53
53
  offers = get_catalog_offers(
54
54
  backend=BackendType.DATACRUNCH,
55
55
  locations=self.config.regions,
56
- requirements=requirements,
57
- configurable_disk_size=CONFIGURABLE_DISK_SIZE,
58
56
  )
59
57
  offers_with_availability = self._get_offers_with_availability(offers)
60
58
  return offers_with_availability
61
59
 
60
+ def get_offers_modifier(
61
+ self, requirements: Requirements
62
+ ) -> Callable[[InstanceOfferWithAvailability], Optional[InstanceOfferWithAvailability]]:
63
+ return get_offers_disk_modifier(CONFIGURABLE_DISK_SIZE, requirements)
64
+
62
65
  def _get_offers_with_availability(
63
66
  self, offers: List[InstanceOffer]
64
67
  ) -> List[InstanceOfferWithAvailability]:
@@ -182,10 +185,9 @@ class DataCrunchCompute(
182
185
 
183
186
  def _get_vm_image_id(instance_offer: InstanceOfferWithAvailability) -> str:
184
187
  # https://api.datacrunch.io/v1/images
185
- if (
186
- len(instance_offer.instance.resources.gpus) > 0
187
- and instance_offer.instance.resources.gpus[0].name == "V100"
188
- ):
188
+ if len(instance_offer.instance.resources.gpus) > 0 and instance_offer.instance.resources.gpus[
189
+ 0
190
+ ].name in ["V100", "A6000"]:
189
191
  # Ubuntu 22.04 + CUDA 12.0 + Docker
190
192
  return "2088da25-bb0d-41cc-a191-dccae45d96fd"
191
193
  # Ubuntu 24.04 + CUDA 12.8 Open + Docker
@@ -5,6 +5,7 @@ from gpuhunt.providers.digitalocean import DigitalOceanProvider
5
5
 
6
6
  from dstack._internal.core.backends.base.backend import Compute
7
7
  from dstack._internal.core.backends.base.compute import (
8
+ ComputeWithAllOffersCached,
8
9
  ComputeWithCreateInstanceSupport,
9
10
  generate_unique_instance_name,
10
11
  get_user_data,
@@ -20,7 +21,7 @@ from dstack._internal.core.models.instances import (
20
21
  InstanceOfferWithAvailability,
21
22
  )
22
23
  from dstack._internal.core.models.placement import PlacementGroup
23
- from dstack._internal.core.models.runs import JobProvisioningData, Requirements
24
+ from dstack._internal.core.models.runs import JobProvisioningData
24
25
  from dstack._internal.utils.logging import get_logger
25
26
 
26
27
  logger = get_logger(__name__)
@@ -37,6 +38,7 @@ DOCKER_INSTALL_COMMANDS = [
37
38
 
38
39
 
39
40
  class BaseDigitalOceanCompute(
41
+ ComputeWithAllOffersCached,
40
42
  ComputeWithCreateInstanceSupport,
41
43
  Compute,
42
44
  ):
@@ -50,13 +52,10 @@ class BaseDigitalOceanCompute(
50
52
  DigitalOceanProvider(api_key=config.creds.api_key, api_url=api_url)
51
53
  )
52
54
 
53
- def get_offers(
54
- self, requirements: Optional[Requirements] = None
55
- ) -> List[InstanceOfferWithAvailability]:
55
+ def get_all_offers_with_availability(self) -> List[InstanceOfferWithAvailability]:
56
56
  offers = get_catalog_offers(
57
57
  backend=self.BACKEND_TYPE,
58
58
  locations=self.config.regions,
59
- requirements=requirements,
60
59
  catalog=self.catalog,
61
60
  )
62
61
  return [
@@ -17,6 +17,7 @@ import dstack._internal.core.backends.gcp.resources as gcp_resources
17
17
  from dstack import version
18
18
  from dstack._internal.core.backends.base.compute import (
19
19
  Compute,
20
+ ComputeWithAllOffersCached,
20
21
  ComputeWithCreateInstanceSupport,
21
22
  ComputeWithGatewaySupport,
22
23
  ComputeWithMultinodeSupport,
@@ -31,7 +32,10 @@ from dstack._internal.core.backends.base.compute import (
31
32
  get_user_data,
32
33
  merge_tags,
33
34
  )
34
- from dstack._internal.core.backends.base.offers import get_catalog_offers
35
+ from dstack._internal.core.backends.base.offers import (
36
+ get_catalog_offers,
37
+ get_offers_disk_modifier,
38
+ )
35
39
  from dstack._internal.core.backends.gcp.features import tcpx as tcpx_features
36
40
  from dstack._internal.core.backends.gcp.models import GCPConfig
37
41
  from dstack._internal.core.errors import (
@@ -82,6 +86,7 @@ class GCPVolumeDiskBackendData(CoreModel):
82
86
 
83
87
 
84
88
  class GCPCompute(
89
+ ComputeWithAllOffersCached,
85
90
  ComputeWithCreateInstanceSupport,
86
91
  ComputeWithMultinodeSupport,
87
92
  ComputeWithPlacementGroupSupport,
@@ -107,14 +112,10 @@ class GCPCompute(
107
112
  self._extra_subnets_cache_lock = threading.Lock()
108
113
  self._extra_subnets_cache = TTLCache(maxsize=30, ttl=60)
109
114
 
110
- def get_offers(
111
- self, requirements: Optional[Requirements] = None
112
- ) -> List[InstanceOfferWithAvailability]:
115
+ def get_all_offers_with_availability(self) -> List[InstanceOfferWithAvailability]:
113
116
  regions = get_or_error(self.config.regions)
114
117
  offers = get_catalog_offers(
115
118
  backend=BackendType.GCP,
116
- requirements=requirements,
117
- configurable_disk_size=CONFIGURABLE_DISK_SIZE,
118
119
  extra_filter=_supported_instances_and_zones(regions),
119
120
  )
120
121
  quotas: Dict[str, Dict[str, float]] = defaultdict(dict)
@@ -142,9 +143,13 @@ class GCPCompute(
142
143
  offer_keys_to_offers[key] = offer_with_availability
143
144
  offers_with_availability.append(offer_with_availability)
144
145
  offers_with_availability[-1].region = region
145
-
146
146
  return offers_with_availability
147
147
 
148
+ def get_offers_modifier(
149
+ self, requirements: Requirements
150
+ ) -> Callable[[InstanceOfferWithAvailability], Optional[InstanceOfferWithAvailability]]:
151
+ return get_offers_disk_modifier(CONFIGURABLE_DISK_SIZE, requirements)
152
+
148
153
  def terminate_instance(
149
154
  self, instance_id: str, region: str, backend_data: Optional[str] = None
150
155
  ) -> None: