"wrappers/python/src/vscode:/vscode.git/clone" did not exist on "9d03dbb4c8e1b1ca359db8acc7318c7f5ac9fb6f"
Commit ee87c980 authored by Mark Friedrichs's avatar Mark Friedrichs
Browse files

Update launch mounds for kReduceObcGbsaBornForces_kernel and kReduceGBVIBornForces_kernel

parent a381d94a
...@@ -300,11 +300,11 @@ double kReduceEnergy(gpuContext gpu) ...@@ -300,11 +300,11 @@ double kReduceEnergy(gpuContext gpu)
__global__ __global__
#if (__CUDA_ARCH__ >= 200) #if (__CUDA_ARCH__ >= 200)
__launch_bounds__(GF1XX_UPDATE_THREADS_PER_BLOCK, 1) __launch_bounds__(GF1XX_THREADS_PER_BLOCK, 1)
#elif (__CUDA_ARCH__ >= 120) #elif (__CUDA_ARCH__ >= 120)
__launch_bounds__(GT2XX_UPDATE_THREADS_PER_BLOCK, 1) __launch_bounds__(GT2XX_THREADS_PER_BLOCK, 1)
#else #else
__launch_bounds__(G8X_UPDATE_THREADS_PER_BLOCK, 1) __launch_bounds__(G8X_THREADS_PER_BLOCK, 1)
#endif #endif
void kReduceObcGbsaBornForces_kernel() void kReduceObcGbsaBornForces_kernel()
{ {
...@@ -366,11 +366,11 @@ void kReduceObcGbsaBornForces_kernel() ...@@ -366,11 +366,11 @@ void kReduceObcGbsaBornForces_kernel()
__global__ __global__
#if (__CUDA_ARCH__ >= 200) #if (__CUDA_ARCH__ >= 200)
__launch_bounds__(GF1XX_UPDATE_THREADS_PER_BLOCK, 1) __launch_bounds__(GF1XX_THREADS_PER_BLOCK, 1)
#elif (__CUDA_ARCH__ >= 120) #elif (__CUDA_ARCH__ >= 120)
__launch_bounds__(GT2XX_UPDATE_THREADS_PER_BLOCK, 1) __launch_bounds__(GT2XX_THREADS_PER_BLOCK, 1)
#else #else
__launch_bounds__(G8X_UPDATE_THREADS_PER_BLOCK, 1) __launch_bounds__(G8X_THREADS_PER_BLOCK, 1)
#endif #endif
void kReduceGBVIBornForces_kernel() void kReduceGBVIBornForces_kernel()
{ {
...@@ -428,7 +428,8 @@ void kReduceGBVIBornForces_kernel() ...@@ -428,7 +428,8 @@ void kReduceGBVIBornForces_kernel()
void kReduceObcGbsaBornForces(gpuContext gpu) void kReduceObcGbsaBornForces(gpuContext gpu)
{ {
//printf("kReduceObcGbsaBornForces\n"); //fprintf( stderr, "kReduceObcGbsaBornForces %u %u %u %u %u\n", gpu->sim.blocks, gpu->sim.bsf_reduce_threads_per_block, GF1XX_THREADS_PER_BLOCK,
// GT2XX_THREADS_PER_BLOCK, G8X_THREADS_PER_BLOCK ); fflush( stderr );
if( gpu->bIncludeGBSA ){ if( gpu->bIncludeGBSA ){
kReduceObcGbsaBornForces_kernel<<<gpu->sim.blocks, gpu->sim.bsf_reduce_threads_per_block>>>(); kReduceObcGbsaBornForces_kernel<<<gpu->sim.blocks, gpu->sim.bsf_reduce_threads_per_block>>>();
LAUNCHERROR("kReduceObcGbsaBornForces"); LAUNCHERROR("kReduceObcGbsaBornForces");
......
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