From bd3ddb3f1a4c8e94c5a8d6f85ae95d84f79de90a Mon Sep 17 00:00:00 2001 From: Ofir Zafrir Date: Fri, 7 Aug 2026 21:13:25 +0300 Subject: [PATCH 1/2] Update min version for dflash test to 2026.999 until it will get into an official version --- tests/openvino/test_genai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/openvino/test_genai.py b/tests/openvino/test_genai.py index a7f1df5454..bad4f0f169 100644 --- a/tests/openvino/test_genai.py +++ b/tests/openvino/test_genai.py @@ -581,7 +581,7 @@ class LLMPipelineWithSpeculativeDecodingTestCase(unittest.TestCase): } SPECULATIVE_DECODING_MODELS = [ (model_arch, model_pair, "Eagle3", None, "2026.0") for model_arch, model_pair in EAGLE3_MODELS.items() - ] + [(model_arch, model_pair, "DFlash", "4.57", "2026.3") for model_arch, model_pair in DFLASH_MODELS.items()] + ] + [(model_arch, model_pair, "DFlash", "4.57", "2026.999") for model_arch, model_pair in DFLASH_MODELS.items()] @parameterized.expand(SPECULATIVE_DECODING_MODELS) def test_compare_outputs( From 6e5798869f6074dd71fd1a67755f78e7b6856fe6 Mon Sep 17 00:00:00 2001 From: Ofir Zafrir Date: Fri, 7 Aug 2026 21:18:06 +0300 Subject: [PATCH 2/2] update comment --- tests/openvino/test_genai.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/openvino/test_genai.py b/tests/openvino/test_genai.py index bad4f0f169..2e2416efbb 100644 --- a/tests/openvino/test_genai.py +++ b/tests/openvino/test_genai.py @@ -571,6 +571,7 @@ def test_compare_outputs(self, model_arch): torch.testing.assert_close(transformers_output, genai_output, rtol=1e-2, atol=1e-3) +# NOTE: DFlash wasn't merge yet to an official release so skipping the tests for now @pytest.mark.skipif(OPENVINO_DEVICE == "NPU", reason="Speculative decoding tests are not yet supported on NPU") class LLMPipelineWithSpeculativeDecodingTestCase(unittest.TestCase): GEN_KWARGS = {