Skip to content

Commit 0e2ccef

Browse files
Update references after OpenVINO 2025.3 release (#1441)
* Update transformers 4.36 references for whisper after OpenVINO 2025.3 release * Update SDPA reference for biogpt
1 parent c35534d commit 0e2ccef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/openvino/test_exporters_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ class OVCLIExportTestCase(unittest.TestCase):
239239
"whisper",
240240
"f8e4m3",
241241
"--dataset librispeech --num-samples 1 --smooth-quant-alpha 0.9 --trust-remote-code",
242-
{"encoder": 16, "decoder": 26, "decoder_with_past": 23}
242+
{"encoder": 14, "decoder": 22, "decoder_with_past": 21}
243243
if is_transformers_version("<=", "4.36.0")
244244
else {"encoder": 16, "decoder": 26, "decoder_with_past": 25},
245245
(

tests/openvino/test_modeling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1244,7 +1244,7 @@ class OVModelForCausalLMIntegrationTest(unittest.TestCase):
12441244
"falcon": 2,
12451245
"falcon-40b": 2,
12461246
"persimmon": 2,
1247-
"biogpt": 5,
1247+
"biogpt": 5 if is_transformers_version(">=", "4.45.0") else 0,
12481248
"aquila": 2,
12491249
"aquila2": 2,
12501250
"xverse": 2,

0 commit comments

Comments
 (0)