Skip to content

Commit 83c0d3f

Browse files
committed
Keep MaxViT enabled in the QNN model suite
Remove the QNN-specific MaxViT skip. The test also crashes consistently on main, while the release check's exit 137 was a separate flaky resource failure.\n\nAuthored with Codex assistance.
1 parent 3768f91 commit 83c0d3f

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

backends/test/suite/flows/qualcomm.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ def _create_qnn_flow(
1212
per_channel_linear=False,
1313
is_qat=False,
1414
use_fp16=True,
15-
skip_patterns: list[str] | None = None,
1615
) -> TestFlow:
1716
if quantize and quant_dtype is None:
1817
raise RuntimeError("Quant dtype must be provided when quantize is true.")
@@ -38,11 +37,10 @@ def create_quantize_stage() -> Quantize:
3837
tester_factory=create_tester,
3938
quantize=quantize,
4039
quantize_stage_factory=create_quantize_stage if quantize else None,
41-
skip_patterns=skip_patterns or [],
4240
)
4341

4442

45-
QNN_TEST_FLOW = _create_qnn_flow("qnn", skip_patterns=["test_maxvit_t"])
43+
QNN_TEST_FLOW = _create_qnn_flow("qnn")
4644
QNN_16A16W_TEST_FLOW = _create_qnn_flow(
4745
"qnn_16a16w", quantize=True, quant_dtype=QuantDtype.use_16a16w, use_fp16=False
4846
)

0 commit comments

Comments
 (0)