Skip to content

Commit 60ad4d1

Browse files
committed
Fix nanobind error.
Signed-off-by: Shiyu Li <[email protected]>
1 parent 000561d commit 60ad4d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/tensorrt_llm/nanobind/runtime/bindings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ void initBindings(nb::module_& m)
340340
"Reset the current virtual memory allocator and stop allocating virtual memory for CUDA allocations");
341341

342342
nb::class_<tensorrt_llm::runtime::McastGPUBuffer>(m, "McastGPUBuffer")
343-
.def(nb::init<size_t, uint32_t, uint32_t, at::Device, bool>())
343+
.def(nb::init<size_t, uint32_t, uint32_t, uint32_t, at::Device, bool>())
344344
.def("get_uc_buffer", &tensorrt_llm::runtime::McastGPUBuffer::getUCBuffer)
345345
.def("get_mc_buffer", &tensorrt_llm::runtime::McastGPUBuffer::getMCBuffer);
346346

0 commit comments

Comments
 (0)