Commit 00874c4a authored by Mark Friedrichs's avatar Mark Friedrichs
Browse files

Thread count for kReduceObcGbsaBornForces_kernel/kReduceGbviBornForces_kernel...

Thread count for kReduceObcGbsaBornForces_kernel/kReduceGbviBornForces_kernel were too low for some systems/boards
parent a3b1009a
...@@ -429,10 +429,10 @@ void kReduceObcGbsaBornForces(gpuContext gpu) ...@@ -429,10 +429,10 @@ void kReduceObcGbsaBornForces(gpuContext gpu)
{ {
//printf("kReduceObcGbsaBornForces\n"); //printf("kReduceObcGbsaBornForces\n");
if( gpu->bIncludeGBSA ){ if( gpu->bIncludeGBSA ){
kReduceObcGbsaBornForces_kernel<<<gpu->sim.blocks, gpu->sim.bf_reduce_threads_per_block>>>(); kReduceObcGbsaBornForces_kernel<<<gpu->sim.blocks, gpu->sim.bsf_reduce_threads_per_block>>>();
LAUNCHERROR("kReduceObcGbsaBornForces"); LAUNCHERROR("kReduceObcGbsaBornForces");
} else if( gpu->bIncludeGBVI ){ } else if( gpu->bIncludeGBVI ){
kReduceGBVIBornForces_kernel<<<gpu->sim.blocks, gpu->sim.bf_reduce_threads_per_block>>>(); kReduceGBVIBornForces_kernel<<<gpu->sim.blocks, gpu->sim.bsf_reduce_threads_per_block>>>();
LAUNCHERROR("kReduceGBVIBornForces"); LAUNCHERROR("kReduceGBVIBornForces");
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment