Skip to content

Commit

Permalink
use hardcoded instance type
Browse files Browse the repository at this point in the history
  • Loading branch information
r-i-v-a committed Jan 24, 2025
1 parent 6dcba8b commit 862cd4d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions compiler/src/test/resources/compiler/instance_type_test.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,12 @@ task GPUSpec {
echo "On a GPU instance"
}
runtime {
gpu : true
# Test if another instance type is more available
memory: "32 GiB"
# Instance type temporarily hardcoded to avoid picking unavailable one
dx_instance_type: "mem2_ssd1_gpu_x16"
# TODO use GPU, memory requirements after unavailable instance types
# are removed from test pricing model
# gpu: true
# memory: "2 GiB"
}
output {
String retval = read_string(stdout())
Expand Down

0 comments on commit 862cd4d

Please sign in to comment.