https://github.com/N-BodyShop/changa
Raw File
Tip revision: db1f5bd29d42478b20d5f0c86381890596ae2d2d authored by Harshitha on 17 February 2016, 05:39:14 UTC
Reset the background load in HierarchOrbLB because we don't use that for LB
Tip revision: db1f5bd
CUDAMoments.h
#ifndef CUDAMoments_h
#define CUDAMoments_h 1

#include "cuda_typedef.h"

/** CUDA version of momEvalFmomrcm. */
#ifdef CUDA_UNIT_TEST
__global__ void
#else
__device__ inline void __attribute__(( always_inline ))
#endif
CUDA_momEvalFmomrcm(const CudaMultipoleMoments* _m,
                    const CudaVector3D* _r,
                    cudatype dir,
                    CudaVector3D* out,
                    cudatype* pot);

#endif  /* CUDAMoments_h */
back to top