Skip to content

Commit aadf2ee

Browse files
authored
Use linux.4xlarge.memory instead of linux.12xlarge (#6896)
* Try linux.4xlarge.memory * Testing * Ready to land * More tests * Forget one line change * Use linux.8xlarge.memory for llama3_2_text_decoder * Increase timeout value * Skip llama3_2_text_decoder because it takes too long to export * Ready to land
1 parent 0c83c59 commit aadf2ee

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.ci/scripts/gather_test_models.py

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@
2020
CUSTOM_RUNNERS = {
2121
"linux": {
2222
# This one runs OOM on smaller runner, the root cause is unclear (T163016365)
23-
"w2l": "linux.12xlarge",
24-
"ic4": "linux.12xlarge",
25-
"resnet50": "linux.12xlarge",
26-
"llava": "linux.12xlarge",
27-
"llama3_2_vision_encoder": "linux.12xlarge",
28-
# "llama3_2_text_decoder": "linux.12xlarge", # TODO: re-enable test when Huy's change is in / model gets smaller.
23+
"w2l": "linux.4xlarge.memory",
24+
"ic4": "linux.4xlarge.memory",
25+
"resnet50": "linux.4xlarge.memory",
26+
"llava": "linux.4xlarge.memory",
27+
"llama3_2_vision_encoder": "linux.4xlarge.memory",
28+
"llama3_2_text_decoder": "linux.4xlarge.memory",
2929
# This one causes timeout on smaller runner, the root cause is unclear (T161064121)
30-
"dl3": "linux.12xlarge",
31-
"emformer_join": "linux.12xlarge",
32-
"emformer_predict": "linux.12xlarge",
30+
"dl3": "linux.4xlarge.memory",
31+
"emformer_join": "linux.4xlarge.memory",
32+
"emformer_predict": "linux.4xlarge.memory",
3333
}
3434
}
3535

@@ -39,10 +39,12 @@
3939
"linux": {
4040
"mobilebert": 90,
4141
"emformer_predict": 360,
42+
"llama3_2_text_decoder": 360,
4243
},
4344
"macos": {
4445
"mobilebert": 90,
4546
"emformer_predict": 360,
47+
"llama3_2_text_decoder": 360,
4648
},
4749
}
4850

examples/models/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"llama2": ("llama", "Llama2Model"),
2020
"llama": ("llama", "Llama2Model"),
2121
"llama3_2_vision_encoder": ("llama3_2_vision", "FlamingoVisionEncoderModel"),
22+
# TODO: This take too long to export on both Linux and MacOS (> 6 hours)
2223
# "llama3_2_text_decoder": ("llama3_2_vision", "Llama3_2Decoder"),
2324
"lstm": ("lstm", "LSTMModel"),
2425
"mobilebert": ("mobilebert", "MobileBertModelExample"),

0 commit comments

Comments
 (0)