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
aa05dfd5
Commit
aa05dfd5
authored
Jan 06, 2026
by
zhuwenwen
Browse files
[Fix] nccl暂不支持ncclCommWindowDeregister接口,引入nccl.so时报错问题解决
parent
56983e67
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
vllm/distributed/device_communicators/pynccl_wrapper.py
vllm/distributed/device_communicators/pynccl_wrapper.py
+12
-12
No files found.
vllm/distributed/device_communicators/pynccl_wrapper.py
View file @
aa05dfd5
...
@@ -281,20 +281,20 @@ class NCCLLibrary:
...
@@ -281,20 +281,20 @@ class NCCLLibrary:
# ncclResult_t ncclCommWindowRegister(
# ncclResult_t ncclCommWindowRegister(
# ncclComm_t comm, void* buff, size_t size,
# ncclComm_t comm, void* buff, size_t size,
# ncclWindow_t* win, int winFlags);
# ncclWindow_t* win, int winFlags);
Function
(
#
Function(
"ncclCommWindowRegister"
,
#
"ncclCommWindowRegister",
ncclResult_t
,
#
ncclResult_t,
[
#
[
ncclComm_t
,
#
ncclComm_t,
buffer_type
,
#
buffer_type,
ctypes
.
c_size_t
,
#
ctypes.c_size_t,
ctypes
.
POINTER
(
ncclWindow_t
),
#
ctypes.POINTER(ncclWindow_t),
ctypes
.
c_int
,
#
ctypes.c_int,
],
#
],
),
#
),
# ncclResult_t ncclCommWindowDeregister(
# ncclResult_t ncclCommWindowDeregister(
# ncclComm_t comm, ncclWindow_t win);
# ncclComm_t comm, ncclWindow_t win);
Function
(
"ncclCommWindowDeregister"
,
ncclResult_t
,
[
ncclComm_t
,
ncclWindow_t
]),
#
Function("ncclCommWindowDeregister", ncclResult_t, [ncclComm_t, ncclWindow_t]),
]
]
# class attribute to store the mapping from the path to the library
# class attribute to store the mapping from the path to the library
...
...
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