We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66df73a commit c1f1e1aCopy full SHA for c1f1e1a
src/cuda/colvaratoms_kernel.cu
@@ -1031,7 +1031,7 @@ int accumulate_cpu_force(
1031
&d_atoms_force_z,
1032
&num_atoms};
1033
cudaKernelNodeParams kernelNodeParams = {0};
1034
- kernelNodeParams.func = (void*)accumulate_cpu_force;
+ kernelNodeParams.func = (void*)accumulate_cpu_force_kernel;
1035
kernelNodeParams.gridDim = dim3(num_blocks, 1, 1);
1036
kernelNodeParams.blockDim = dim3(block_size, 1, 1);
1037
kernelNodeParams.sharedMemBytes = 0;
0 commit comments