https://github.com/N-BodyShop/changa
Raw File
Tip revision: 9283b32eaf9d6fce3fca142cf273f1623e4d7a34 authored by Tom Quinn on 27 February 2017, 17:21:25 UTC
Changed signature of openCriterionBucket() to remove unused parameter.
Tip revision: 9283b32
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