https://github.com/N-BodyShop/changa
Raw File
Tip revision: 9736ac6e55e28771e3ec49f3eb881e6f265ad099 authored by Phil Miller on 01 December 2017, 17:10:18 UTC
Makefile: Fix parallel build failures for decl/def files
Tip revision: 9736ac6
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