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
90f1e554
Unverified
Commit
90f1e554
authored
Jul 21, 2025
by
Ratnam Parikh
Committed by
GitHub
Jul 21, 2025
Browse files
[Intel GPU] Ray Compiled Graph avoid NCCL for Intel GPU (#21338)
Signed-off-by:
ratnampa
<
ratnam.parikh@intel.com
>
parent
5e70dcd6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vllm/executor/ray_distributed_executor.py
vllm/executor/ray_distributed_executor.py
+2
-2
No files found.
vllm/executor/ray_distributed_executor.py
View file @
90f1e554
...
...
@@ -67,8 +67,8 @@ class RayDistributedExecutor(DistributedExecutorBase):
os
.
environ
[
"VLLM_USE_RAY_SPMD_WORKER"
]
=
"1"
os
.
environ
[
"VLLM_USE_RAY_COMPILED_DAG"
]
=
"1"
# For TPU, avoid compiling NVIDIA's NCCL
if
current_platform
.
is_tpu
():
# For TPU
or XPU
, avoid compiling NVIDIA's NCCL
if
current_platform
.
is_tpu
()
or
current_platform
.
is_xpu
()
:
os
.
environ
[
"VLLM_USE_RAY_COMPILED_DAG_CHANNEL_TYPE"
]
=
"shm"
# If the env var is set, it uses the Ray's compiled DAG API
...
...
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