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
59d5d2c7
Unverified
Commit
59d5d2c7
authored
Sep 12, 2025
by
Li, Jiang
Committed by
GitHub
Sep 12, 2025
Browse files
[CI/Build] Skip prompt embeddings tests on V1-only CPU backend (#24721)
Signed-off-by:
jiang1.li
<
jiang1.li@intel.com
>
parent
d21a36f5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
tests/models/language/generation/test_common.py
tests/models/language/generation/test_common.py
+6
-0
No files found.
tests/models/language/generation/test_common.py
View file @
59d5d2c7
...
...
@@ -119,6 +119,12 @@ def test_models(hf_runner, vllm_runner, example_prompts, model: str,
# in parts of the operators
pytest
.
skip
(
f
"Skipping '
{
model
}
' model test with AITER kernel."
)
# Note: can be removed when
# https://github.com/vllm-project/vllm/pull/24278 finished
if
current_platform
.
is_cpu
()
and
use_prompt_embeds
:
pytest
.
skip
(
"Skipping use_prompt_embeds=True with "
"V1-only CPU backend."
)
with
hf_runner
(
model
)
as
hf_model
:
hf_outputs
=
hf_model
.
generate_greedy_logprobs_limit
(
example_prompts
,
max_tokens
,
num_logprobs
)
...
...
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