We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9d863c commit 27a42b7Copy full SHA for 27a42b7
src/dstack/_internal/core/backends/datacrunch/compute.py
@@ -185,10 +185,9 @@ def update_provisioning_data(
185
186
def _get_vm_image_id(instance_offer: InstanceOfferWithAvailability) -> str:
187
# https://api.datacrunch.io/v1/images
188
- if (
189
- len(instance_offer.instance.resources.gpus) > 0
190
- and instance_offer.instance.resources.gpus[0].name == "V100"
191
- ):
+ if len(instance_offer.instance.resources.gpus) > 0 and instance_offer.instance.resources.gpus[
+ 0
+ ].name in ["V100", "A6000"]:
192
# Ubuntu 22.04 + CUDA 12.0 + Docker
193
return "2088da25-bb0d-41cc-a191-dccae45d96fd"
194
# Ubuntu 24.04 + CUDA 12.8 Open + Docker
0 commit comments