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
09a6a49e
Unverified
Commit
09a6a49e
authored
Oct 23, 2025
by
Rui Qiao
Committed by
GitHub
Oct 24, 2025
Browse files
[Misc] Avoid "PyTorch non-writable tensors" warning in RayPPCommunicator (#27443)
Signed-off-by:
Rui Qiao
<
ruisearch42@gmail.com
>
parent
07447554
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vllm/distributed/device_communicators/ray_communicator.py
vllm/distributed/device_communicators/ray_communicator.py
+1
-1
No files found.
vllm/distributed/device_communicators/ray_communicator.py
View file @
09a6a49e
...
...
@@ -99,7 +99,7 @@ class RayPPCommunicator(Communicator):
# Ray actor IDs are 32-character hex strings (128 bits)
ACTOR_ID_LEN
=
32
actor_id_bytes
=
actor_id_str
.
encode
(
"utf-8"
)
actor_id_bytes
=
bytearray
(
actor_id_str
.
encode
(
"utf-8"
)
)
assert
len
(
actor_id_bytes
)
==
ACTOR_ID_LEN
,
(
f
"Unexpected actor ID length:
{
len
(
actor_id_bytes
)
}
"
)
...
...
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