ci: add tx >=5,<6 slow compile model_types to KNOWN_BROKEN_COMPILE (#5458)
The per-model SIGALRM cap landed on the previous fix now exposes beit / sam / sam_hq as compile-too-slow on transformers >=5,<6 + trl >=1,<2 -- each exceeds the 60s per-model budget. They are real slow paths in unsloth_compile_transformers's source rewriter when handling beit / SAM's encoder layers on the new transformers line, not infra flakes (the prior fix logged sweep progress per 25 models so the slow ones are pinpointable in CI logs). Bucket them into Category F (compile exceeds budget) so the sweep stays green and each is tracked for follow-up zoo fixes in the same shape as the existing 27 known-broken entries. Surface behaviour stays identical: any NEW slow model_type still fails the cell with a TimeoutError tag.
This commit is contained in:
parent
c7c3840b5f
commit
51dd5fac79
1 changed files with 6 additions and 0 deletions
6
.github/workflows/consolidated-tests-ci.yml
vendored
6
.github/workflows/consolidated-tests-ci.yml
vendored
|
|
@ -962,6 +962,12 @@ jobs:
|
|||
# Category E: undefined name in emitted file.
|
||||
"perceiver": "name 'AbstractPreprocessor' is not defined",
|
||||
"sam3_lite_text": "name 'Sam3LiteTextLayerScaledResidual' is not defined",
|
||||
# Category F: compile exceeds 60s budget on the runner.
|
||||
# First seen on transformers >=5,<6; each represents a slow
|
||||
# or recursive source-rewriter path the zoo can address.
|
||||
"beit": "TimeoutError: compile exceeds per-model budget",
|
||||
"sam": "TimeoutError: compile exceeds per-model budget",
|
||||
"sam_hq": "TimeoutError: compile exceeds per-model budget",
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue