We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d747639 commit d1468cfCopy full SHA for d1468cf
1 file changed
tests/openvino/test_export.py
@@ -153,11 +153,6 @@ def _openvino_export(
153
library_name = TasksManager.infer_library_from_model(model_name)
154
loading_kwargs = {"attn_implementation": "eager"} if model_type in SDPA_ARCHS_ONNX_EXPORT_NOT_SUPPORTED else {}
155
156
- # On OV 2026.1 the torch->OV tracing path for Qwen3.5-MoE is sensitive to bf16/fp32 mixing.
157
- # Force fp32 load to keep export deterministic in CI.
158
- if model_type == "qwen3_5_moe":
159
- loading_kwargs["torch_dtype"] = torch.float32
160
-
161
if model_type in REMOTE_CODE_MODELS:
162
loading_kwargs["trust_remote_code"] = True
163
0 commit comments