We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aea26f commit 976c981Copy full SHA for 976c981
tests/v1/entrypoints/llm/test_struct_output_generate.py
@@ -81,6 +81,9 @@ def test_structured_output(
81
):
82
monkeypatch.setenv("VLLM_USE_V1", "1")
83
84
+ if current_platform.is_tpu() and speculative_config:
85
+ pytest.skip("TPU does not support speculative decoding")
86
+
87
# Don't use eager execution on TPUs because we want to test for no
88
# recompilation at runtime
89
enforce_eager = bool(not current_platform.is_tpu())
0 commit comments