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
89f1f253
Unverified
Commit
89f1f253
authored
Jan 04, 2026
by
Andreas Karatzas
Committed by
GitHub
Jan 05, 2026
Browse files
[CI] Skip Phi-MoE test due to old API util (#31632)
Signed-off-by:
Andreas Karatzas
<
akaratza@amd.com
>
parent
b53b89fd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
2 deletions
+15
-2
.buildkite/test-amd.yaml
.buildkite/test-amd.yaml
+2
-2
tests/models/language/generation/test_phimoe.py
tests/models/language/generation/test_phimoe.py
+13
-0
No files found.
.buildkite/test-amd.yaml
View file @
89f1f253
...
...
@@ -889,7 +889,7 @@ steps:
commands
:
# Install fast path packages for testing against transformers
# Note: also needed to run plamo2 model in vLLM
-
uv pip install --system --no-build-isolation 'git+https://github.com/
state-spaces/mamba@v2.2.5
'
-
uv pip install --system --no-build-isolation 'git+https://github.com/
AndreasKaratzas/mamba@fix-rocm-7.0-warp-size-constexpr
'
-
uv pip install --system --no-build-isolation 'git+https://github.com/Dao-AILab/causal-conv1d@v1.5.2'
# Shard hybrid language model tests
-
pytest -v -s models/language/generation \
...
...
@@ -910,7 +910,7 @@ steps:
commands
:
# Install fast path packages for testing against transformers
# Note: also needed to run plamo2 model in vLLM
-
uv pip install --system --no-build-isolation 'git+https://github.com/
state-spaces/mamba@v2.2.5
'
-
uv pip install --system --no-build-isolation 'git+https://github.com/
AndreasKaratzas/mamba@fix-rocm-7.0-warp-size-constexpr
'
-
uv pip install --system --no-build-isolation 'git+https://github.com/Dao-AILab/causal-conv1d@v1.5.2'
-
pytest -v -s models/language/generation -m '(not core_model) and (not hybrid_model)'
...
...
tests/models/language/generation/test_phimoe.py
View file @
89f1f253
...
...
@@ -60,6 +60,19 @@ def test_phimoe_routing_function():
assert
torch
.
equal
(
topk_ids
,
ground_truth
[
test_id
][
"topk_ids"
])
# There is a known issue that triggers `AttributeError: 'DynamicCache'
# object has no attribute 'seen_tokens'` when running:
# `tests/models/language/generation/test_phimoe.py::test_models
# [5-64-bfloat16-microsoft/Phi-3.5-MoE-instruct]`
# This issue is being investigated and tracked in:
# https://huggingface.co/microsoft/Phi-3.5-MoE-instruct/discussions/58
# It is platform-agnostic. Therefore, we skip this test on all platforms for now.
@
pytest
.
mark
.
skip
(
reason
=
"Skipping due to known issue: "
"'DynamicCache' object has no attribute 'seen_tokens'. See: "
"https://huggingface.co/microsoft/Phi-3.5-MoE-instruct/discussions/58 "
"for details."
,
)
@
pytest
.
mark
.
skipif
(
condition
=
current_platform
.
is_cpu
(),
reason
=
"This test takes a lot time to run on CPU, "
...
...
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