[Core] Whisper support torch.compile (#30385)

Signed-off-by: NickLucche <nlucches@redhat.com>
This commit is contained in:
Nicolò Lucchesi
2026-01-19 11:02:31 +01:00
committed by GitHub
parent c0a350ca73
commit 74c583bc50
5 changed files with 27 additions and 1 deletions

View File

@@ -156,7 +156,9 @@ def test_wer_correctness(
model_name, dataset_repo, expected_wer, n_examples=-1, max_concurrent_request=None
):
# TODO refactor to use `ASRDataset`
with RemoteOpenAIServer(model_name, ["--enforce-eager"]) as remote_server:
with RemoteOpenAIServer(
model_name, ["--enforce-eager"], max_wait_seconds=480
) as remote_server:
dataset = load_hf_dataset(dataset_repo)
if not max_concurrent_request: