Skip to content
Snippets Groups Projects
Commit 1f97b060 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Adding missing files

parent a70182ca
No related branches found
No related tags found
No related merge requests found
Pipeline #4018 failed
......@@ -12,7 +12,7 @@ constexpr unsigned int POS_PROP = (unsigned int)-1;
#ifdef CUDA_GPU
#define GET_PARTICLE(vd) blockDim.x*blockIdx.x + threadIdx.x; if (blockDim.x*blockIdx.x + threadIdx.x >= vd.size_local()) {return;};
#define GET_PARTICLE(vd) blockDim.x*blockIdx.x + threadIdx.x; if (blockDim.x*blockIdx.x + threadIdx.x >= static_cast<int>(vd.size_local())) {return;};
#define GET_PARTICLE_SORT(p,NN) if (blockDim.x*blockIdx.x + threadIdx.x >= NN.get_g_m()) {return;}\
else{p = NN.getDomainSortIds().template get<0>(blockDim.x*blockIdx.x + threadIdx.x);}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment