Commit 7f558594 authored by zhuwenwen's avatar zhuwenwen
Browse files

[Bugfix] Fixing trying to import non-existent symbols from libnccl.so

parent 4457d4f5
......@@ -281,20 +281,20 @@ class NCCLLibrary:
# ncclResult_t ncclCommWindowRegister(
# ncclComm_t comm, void* buff, size_t size,
# ncclWindow_t* win, int winFlags);
# Function(
# "ncclCommWindowRegister",
# ncclResult_t,
# [
# ncclComm_t,
# buffer_type,
# ctypes.c_size_t,
# ctypes.POINTER(ncclWindow_t),
# ctypes.c_int,
# ],
# ),
Function(
"ncclCommWindowRegister",
ncclResult_t,
[
ncclComm_t,
buffer_type,
ctypes.c_size_t,
ctypes.POINTER(ncclWindow_t),
ctypes.c_int,
],
),
# ncclResult_t ncclCommWindowDeregister(
# 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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment