NAMD
Public Member Functions | Public Attributes | List of all members
GBISResults< 3 > Struct Template Reference

Public Member Functions

__device__ __forceinline__ void init ()
 
__device__ __forceinline__ void shuffleNext ()
 

Public Attributes

float3 force
 

Detailed Description

template<>
struct GBISResults< 3 >

Definition at line 263 of file CudaComputeGBISKernel.cu.

Member Function Documentation

__device__ __forceinline__ void GBISResults< 3 >::init ( )
inline

Definition at line 265 of file CudaComputeGBISKernel.cu.

265 {force.x = 0.0f; force.y = 0.0f; force.z = 0.0f;}
__device__ __forceinline__ void GBISResults< 3 >::shuffleNext ( )
inline

Definition at line 266 of file CudaComputeGBISKernel.cu.

References WARP_FULL_MASK, WARP_SHUFFLE, and WARPSIZE.

266  {
267  force.x = WARP_SHUFFLE(WARP_FULL_MASK, force.x, (threadIdx.x+1) & (WARPSIZE-1), WARPSIZE);
268  force.y = WARP_SHUFFLE(WARP_FULL_MASK, force.y, (threadIdx.x+1) & (WARPSIZE-1), WARPSIZE);
269  force.z = WARP_SHUFFLE(WARP_FULL_MASK, force.z, (threadIdx.x+1) & (WARPSIZE-1), WARPSIZE);
270  }
#define WARP_FULL_MASK
Definition: CudaUtils.h:21
#define WARPSIZE
Definition: CudaUtils.h:10
#define WARP_SHUFFLE(MASK, VAR, LANE, SIZE)
Definition: CudaUtils.h:54

Member Data Documentation

float3 GBISResults< 3 >::force

Definition at line 264 of file CudaComputeGBISKernel.cu.

Referenced by calcGBISPhase(), and writeResult().


The documentation for this struct was generated from the following file: