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
bab438ff
Unverified
Commit
bab438ff
authored
Nov 27, 2025
by
Ryan Rock
Committed by
GitHub
Nov 27, 2025
Browse files
[CI/Build] Skip ray tests on ROCm (#29556)
Signed-off-by:
Ryan Rock
<
ryan.rock@amd.com
>
parent
882851dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
tests/v1/distributed/test_async_llm_dp.py
tests/v1/distributed/test_async_llm_dp.py
+5
-0
No files found.
tests/v1/distributed/test_async_llm_dp.py
View file @
bab438ff
...
@@ -12,6 +12,7 @@ from vllm import SamplingParams
...
@@ -12,6 +12,7 @@ from vllm import SamplingParams
from
vllm.config
import
VllmConfig
from
vllm.config
import
VllmConfig
from
vllm.engine.arg_utils
import
AsyncEngineArgs
from
vllm.engine.arg_utils
import
AsyncEngineArgs
from
vllm.inputs
import
PromptType
from
vllm.inputs
import
PromptType
from
vllm.platforms
import
current_platform
from
vllm.sampling_params
import
RequestOutputKind
from
vllm.sampling_params
import
RequestOutputKind
from
vllm.v1.engine.async_llm
import
AsyncLLM
from
vllm.v1.engine.async_llm
import
AsyncLLM
from
vllm.v1.engine.core_client
import
DPAsyncMPClient
from
vllm.v1.engine.core_client
import
DPAsyncMPClient
...
@@ -84,6 +85,10 @@ async def test_load(
...
@@ -84,6 +85,10 @@ async def test_load(
if
async_scheduling
and
data_parallel_backend
==
"ray"
:
if
async_scheduling
and
data_parallel_backend
==
"ray"
:
# TODO(NickLucche) Re-enable when async scheduling is supported
# TODO(NickLucche) Re-enable when async scheduling is supported
pytest
.
skip
(
"Async scheduling is not supported with ray"
)
pytest
.
skip
(
"Async scheduling is not supported with ray"
)
elif
data_parallel_backend
==
"ray"
and
current_platform
.
is_rocm
():
pytest
.
skip
(
"Ray as the distributed executor backend is not supported with ROCm."
)
stats_loggers
=
{}
stats_loggers
=
{}
@
dataclass
@
dataclass
...
...
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