https://github.com/N-BodyShop/changa
Raw File
Tip revision: e7dadadef3abaf3e3fee775c79a978a221a2e1d2 authored by Tom Quinn on 22 October 2017, 00:57:01 UTC
Eliminate unused load balancing variables.
Tip revision: e7dadad
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