Skip to content

Commit c1f1e1a

Browse files
committed
fix: fix the typo in using accumulate_cpu_force_kernel
1 parent 66df73a commit c1f1e1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cuda/colvaratoms_kernel.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1031,7 +1031,7 @@ int accumulate_cpu_force(
10311031
&d_atoms_force_z,
10321032
&num_atoms};
10331033
cudaKernelNodeParams kernelNodeParams = {0};
1034-
kernelNodeParams.func = (void*)accumulate_cpu_force;
1034+
kernelNodeParams.func = (void*)accumulate_cpu_force_kernel;
10351035
kernelNodeParams.gridDim = dim3(num_blocks, 1, 1);
10361036
kernelNodeParams.blockDim = dim3(block_size, 1, 1);
10371037
kernelNodeParams.sharedMemBytes = 0;

0 commit comments

Comments
 (0)