Skip to content

Commit

Permalink
select instantiation when taking function address
Browse files Browse the repository at this point in the history
  • Loading branch information
ericniebler committed Oct 28, 2024
1 parent 553adde commit 0c0239f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ inline _CCCL_HOST cudaError_t cudaGraphAddHostNodeWithQueue(
// Submit completion kernel in the stream ...
// callback_completion_kernel<<<1,1,0,stream>>>(data->completion_flag);
cudaKernelNodeParams kernel_node_params;
kernel_node_params.func = (void*) callback_completion_kernel;
kernel_node_params.func = (void*) callback_completion_kernel<>;
kernel_node_params.gridDim = 1;
kernel_node_params.blockDim = 1;
kernel_node_params.kernelParams = new void*[1];
Expand Down

0 comments on commit 0c0239f

Please sign in to comment.