Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cuda_core/cuda/core/graph/_graph_node.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1003,7 +1003,7 @@ cdef void _init_memcpy_params(
params.srcMemoryType = src_type[0]
params.dstMemoryType = dst_type[0]
if src_type[0] == cydriver.CU_MEMORYTYPE_HOST:
params.srcHost = <const void*><uintptr_t>src
params.srcHost = <void*><uintptr_t>src
else:
params.srcDevice = src
if dst_type[0] == cydriver.CU_MEMORYTYPE_HOST:
Expand Down