https://github.com/N-BodyShop/changa
Raw File
Tip revision: a8791ad4f33b0e1ad9d810cad3c9efb534102590 authored by Jaemin Choi on 07 May 2018, 22:22:34 UTC
Moving out of workRequests, too many changes required...
Tip revision: a8791ad
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