Skip to content

Commit adae0c1

Browse files
[CI/Build] do not enforce precompilation on tpu ci tests (vllm-project#25992)
Signed-off-by: Xiang Si <sixiang@google.com>
1 parent cbf9221 commit adae0c1

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/v1/entrypoints/llm/test_struct_output_generate.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,13 +123,10 @@ def test_structured_output(
123123
if current_platform.is_tpu() and speculative_config:
124124
pytest.skip("TPU does not support speculative decoding")
125125

126-
# Don't use eager execution on TPUs because we want to test for no
127-
# recompilation at runtime
128-
enforce_eager = bool(not current_platform.is_tpu())
129126
# Use a single LLM instance for several scenarios to
130127
# speed up the test suite.
131128
llm = LLM(model=model_name,
132-
enforce_eager=enforce_eager,
129+
enforce_eager=True,
133130
max_model_len=1024,
134131
structured_outputs_config=dict(backend=backend,
135132
disable_any_whitespace=backend

0 commit comments

Comments
 (0)