https://github.com/N-BodyShop/changa
Raw File
Tip revision: f0741c4179f77dc8a93cd4c05c3feb423d9a6a15 authored by Evan Ramos on 06 November 2017, 23:04:18 UTC
Declare Cha_CommitID as extern
Tip revision: f0741c4
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