https://github.com/N-BodyShop/changa
Revision f9aa0561beec30804f8b61d4e72bba24ad9d5fa1 authored by Tom Quinn on 14 August 2017, 22:41:05 UTC, committed by Tom Quinn on 30 August 2017, 22:34:50 UTC
Change-Id: Icb82cbd8a7e18f918a512d4385ed6412415d5500
1 parent 2c05d51
Raw File
Tip revision: f9aa0561beec30804f8b61d4e72bba24ad9d5fa1 authored by Tom Quinn on 14 August 2017, 22:41:05 UTC
Update to v3.3
Tip revision: f9aa056
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