Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
8e972d9c
Unverified
Commit
8e972d9c
authored
Jun 04, 2025
by
Siyuan Liu
Committed by
GitHub
Jun 04, 2025
Browse files
[TPU] Skip hanging tests (#19115)
Signed-off-by:
Siyuan Liu
<
lsiyuan@google.com
>
parent
3336c8cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
6 deletions
+9
-6
.buildkite/scripts/hardware_ci/run-tpu-v1-test.sh
.buildkite/scripts/hardware_ci/run-tpu-v1-test.sh
+1
-1
tests/v1/tpu/test_spmd_model_weight_loading.py
tests/v1/tpu/test_spmd_model_weight_loading.py
+8
-5
No files found.
.buildkite/scripts/hardware_ci/run-tpu-v1-test.sh
View file @
8e972d9c
...
...
@@ -150,7 +150,7 @@ run_and_track_test 9 "test_multimodal.py" \
run_and_track_test 10 "test_pallas.py" \
"python3 -m pytest -s -v /workspace/vllm/tests/v1/tpu/test_pallas.py"
run_and_track_test 11 "test_struct_output_generate.py" \
"python3 -m pytest -s -v /workspace/vllm/tests/v1/entrypoints/llm/test_struct_output_generate.py"
"python3 -m pytest -s -v /workspace/vllm/tests/v1/entrypoints/llm/test_struct_output_generate.py
-k '
not test_structured_output_with_reasoning_matrices
'
"
run_and_track_test 12 "test_moe_pallas.py" \
"python3 -m pytest -s -v /workspace/vllm/tests/tpu/test_moe_pallas.py"
run_and_track_test 13 "test_lora.py" \
...
...
tests/v1/tpu/test_spmd_model_weight_loading.py
View file @
8e972d9c
...
...
@@ -45,11 +45,14 @@ def _get_spmd_mesh():
return
MESH
@
pytest
.
mark
.
parametrize
(
"model"
,
[
"Qwen/Qwen2-1.5B-Instruct"
,
"meta-llama/Llama-3.1-8B-Instruct"
,
"meta-llama/Llama-3.1-70B-Instruct"
,
])
@
pytest
.
mark
.
parametrize
(
"model"
,
[
"Qwen/Qwen2-1.5B-Instruct"
,
# Skip large models due to CI runner disk space limitations
# "meta-llama/Llama-3.1-8B-Instruct",
# "meta-llama/Llama-3.1-70B-Instruct",
])
def
test_tpu_model_loader
(
model
):
# Skip the 70B test if there are less than 8 chips
# TODO: Query using torch xla API, the query API is not working
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment