https://github.com/N-BodyShop/changa
Raw File
Tip revision: a6792bd0f973294ecbc33d53cd2c5e653da5dd85 authored by Phil Miller on 07 November 2017, 16:22:32 UTC
NodeType and GenericTrees enums: move PUP into namespace for proper ADL resolution
Tip revision: a6792bd
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