https://github.com/N-BodyShop/changa
Raw File
Tip revision: 522592c3ebad48f6324a45faf77ec60197ce39e7 authored by Robel on 05 July 2017, 22:30:35 UTC
Combined Ewald Kernels.
Tip revision: 522592c
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