1#ifndef AMREX_NEIGHBORPARTICLESGPUIMPL_H_
2#define AMREX_NEIGHBORPARTICLESGPUIMPL_H_
3#include <AMReX_Config.H>
10 inline Vector<Box> getBoundaryBoxes(
const Box& box,
int ncells)
13 "Too many cells requested in getBoundaryBoxes");
16 "Box must be cell-centered");
19 for (
int i = 0; i < AMREX_SPACEDIM; ++i) {
23 face_boxes.push_back(hi_face_box); bl.push_back(hi_face_box);
24 face_boxes.push_back(lo_face_box); bl.push_back(lo_face_box);
25 for (
auto face_box : face_boxes) {
26 for (
int j = 0; j < AMREX_SPACEDIM; ++j) {
27 if (i == j) {
continue; }
31 edge_boxes.push_back(hi_edge_box); bl.push_back(hi_edge_box);
32 edge_boxes.push_back(lo_edge_box); bl.push_back(lo_edge_box);
33 for (
auto edge_box : edge_boxes) {
34 for (
int k = 0; k < AMREX_SPACEDIM; ++k) {
35 if ((j == k) || (i == k)) {
continue; }
38 bl.push_back(hi_corner_box);
39 bl.push_back(lo_corner_box);
52template <
int NStructReal,
int NStructInt,
int NArrayReal,
int NArrayInt>
57 BL_PROFILE(
"NeighborParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::buildNeighborMask");
58 m_neighbor_mask_initialized =
true;
60 const Geometry& geom = this->Geom(lev);
61 const BoxArray& ba = this->ParticleBoxArray(lev);
66 if (!m_neighbor_mask_initialized ||
71 const std::vector<IntVect>& pshifts = periodicity.
shiftIntVect();
75 int grid = mfi.index();
77 std::set<NeighborTask> neighbor_grids;
78 for (
auto pshift : pshifts)
80 const Box box = ba[mfi] + pshift;
82 const bool first_only =
false;
83 auto isecs = ba.
intersections(box, first_only, m_num_neighbor_cells);
85 for (
auto& isec : isecs)
87 int nbor_grid = isec.first;
88 const Box isec_box = isec.second - pshift;
89 if ( (grid == nbor_grid) && (pshift == 0)) {
continue; }
90 neighbor_grids.insert(
NeighborTask(nbor_grid, isec_box, pshift));
91 const int global_rank = dmap[nbor_grid];
98 for (
auto nbor_grid : neighbor_grids)
101 code.
grid_id = nbor_grid.grid_id;
107 m_code_array[grid].resize(h_code_arr.
size());
109 m_code_array[grid].begin());
110 m_isec_boxes[grid].resize(h_isec_boxes.
size());
112 m_isec_boxes[grid].begin());
117 m_cached_neighbor_ba = ba;
118 m_cached_neighbor_dm = dmap;
119 m_neighbor_mask_initialized =
true;
124template <
int NStructReal,
int NStructInt,
int NArrayReal,
int NArrayInt>
129 BL_PROFILE(
"NeighborParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::buildNeighborCopyOp()");
134 const auto& geom = this->Geom(lev);
135 const auto dxi = this->Geom(lev).InvCellSizeArray();
136 const auto plo = this->Geom(lev).ProbLoArray();
137 const auto domain = this->Geom(lev).Domain();
138 auto& plev = this->GetParticles(lev);
139 auto& ba = this->ParticleBoxArray(lev);
141 if (ba.size() == 1 && (! geom.isAnyPeriodic()) ) {
return; }
143 for(
MFIter mfi = this->MakeMFIter(lev); mfi.
isValid(); ++mfi)
145 int gid = mfi.index();
146 int tid = mfi.LocalTileIndex();
147 auto index = std::make_pair(gid, tid);
149 auto& src_tile = plev[index];
150 auto& aos = src_tile.GetArrayOfStructs();
151 const size_t np_real = aos.numParticles();
154 if (use_boundary_neighbor) {
155 np = m_boundary_particle_ids[lev][index].size();
158 m_boundary_particle_ids.resize(1);
159 m_boundary_particle_ids[lev][index];
162 const auto* p_bndry_pid = m_boundary_particle_ids[lev][index].dataPtr();
166 auto p_counts = counts.
dataPtr();
167 auto p_offsets = offsets.
dataPtr();
170 auto p_code_array = m_code_array[gid].dataPtr();
171 auto p_isec_boxes = m_isec_boxes[gid].dataPtr();
172 const int nisec_box = m_isec_boxes[gid].size();
180 if (use_boundary_neighbor) {
181 pid = p_bndry_pid[i];
184 for (
int j=0; j<nisec_box; ++j) {
185 if (p_isec_boxes[j].contains(iv)) {
197 neighbor_copy_op.resize(gid, lev, num_copies);
199 auto p_boxes = neighbor_copy_op.m_boxes[lev][gid].dataPtr();
200 auto p_levs = neighbor_copy_op.m_levels[lev][gid].dataPtr();
201 auto p_src_indices = neighbor_copy_op.m_src_indices[lev][gid].dataPtr();
202 auto p_periodic_shift = neighbor_copy_op.m_periodic_shift[lev][gid].dataPtr();
208 if (use_boundary_neighbor) {
209 pid = p_bndry_pid[i];
212 int k = p_offsets[i];
213 for (
int j=0; j<nisec_box; ++j) {
214 if (p_isec_boxes[j].contains(iv)) {
215 p_boxes[k] = p_code_array[j].grid_id;
217 p_periodic_shift[k] = p_code_array[j].periodic_shift;
218 p_src_indices[k] = pid;
229template <
int NStructReal,
int NStructInt,
int NArrayReal,
int NArrayInt>
234 BL_PROFILE(
"NeighborParticleContainer::fillNeighbors");
239 this->defineBufferMap();
241 neighbor_copy_op.clear();
242 neighbor_copy_plan.clear();
243 buildNeighborCopyOp();
244 neighbor_copy_plan.build(*
this, neighbor_copy_op, ghost_int_comp,
245 ghost_real_comp,
true);
246 updateNeighborsGPU(
false);
249template <
int NStructReal,
int NStructInt,
int NArrayReal,
int NArrayInt>
254 BL_PROFILE(
"NeighborParticleContainer::updateNeighborsGPU");
256 if (boundary_neighbors_only) {
257 neighbor_copy_op.clear();
258 neighbor_copy_plan.clear();
259 buildNeighborCopyOp(
true);
260 neighbor_copy_plan.build(*
this, neighbor_copy_op, ghost_int_comp,
261 ghost_real_comp,
true);
266 if (this->use_comms_arena) {
271 packBuffer(*
this, neighbor_copy_op, neighbor_copy_plan, snd_buffer);
274 neighbor_copy_plan.buildMPIFinish(this->BufferMap());
283 if (snd_buffer.arena()->isPinned()) {
284 neighbor_copy_plan.buildMPIFinish(this->BufferMap());
288 pinned_snd_buffer.resize(snd_buffer.size());
290 neighbor_copy_plan.buildMPIFinish(this->BufferMap());
295 rcv_buffer.resize(pinned_rcv_buffer.size());
305template <
int NStructReal,
int NStructInt,
int NArrayReal,
int NArrayInt>
310 BL_PROFILE(
"NeighborParticleContainer::clearNeighborsGPU");
314 for (
int lev = 0; lev < this->numLevels(); ++lev)
316 for(
MFIter mfi = this->MakeMFIter(lev); mfi.
isValid(); ++mfi)
318 auto& ptile = this->DefineAndReturnParticleTile(lev, mfi);
319 ptile.setNumNeighbors(0);
#define BL_PROFILE(a)
Definition AMReX_BLProfiler.H:551
#define AMREX_ASSERT_WITH_MESSAGE(EX, MSG)
Definition AMReX_BLassert.H:37
#define AMREX_ASSERT(EX)
Definition AMReX_BLassert.H:38
#define AMREX_ALWAYS_ASSERT(EX)
Definition AMReX_BLassert.H:50
#define AMREX_FOR_1D(...)
Definition AMReX_GpuLaunchMacrosC.nolint.H:97
#define AMREX_D_DECL(a, b, c)
Definition AMReX_SPACE.H:171
A collection of Boxes stored in an Array.
Definition AMReX_BoxArray.H:568
std::vector< std::pair< int, Box > > intersections(const Box &bx) const
Return intersections of Box and BoxArray.
Definition AMReX_BoxArray.cpp:1186
static bool SameRefs(const BoxArray &lhs, const BoxArray &rhs)
whether two BoxArrays share the same data
Definition AMReX_BoxArray.H:841
Long size() const noexcept
Return the number of boxes in the BoxArray.
Definition AMReX_BoxArray.H:615
Calculates the distribution of FABs to MPI processes.
Definition AMReX_DistributionMapping.H:43
static bool SameRefs(const DistributionMapping &lhs, const DistributionMapping &rhs)
Definition AMReX_DistributionMapping.H:189
Rectangular problem domain geometry.
Definition AMReX_Geometry.H:74
bool isAnyPeriodic() const noexcept
Is domain periodic in any direction?
Definition AMReX_Geometry.H:334
Periodicity periodicity() const noexcept
Definition AMReX_Geometry.H:356
Iterator for looping ever tiles and boxes of amrex::FabArray based containers.
Definition AMReX_MFIter.H:85
bool isValid() const noexcept
Is the iterator valid i.e. is it associated with a FAB?
Definition AMReX_MFIter.H:169
void clearNeighborsGPU()
Definition AMReX_NeighborParticlesGPUImpl.H:308
typename ParticleContainerType::ParticleType ParticleType
Definition AMReX_NeighborParticles.H:38
void buildNeighborCopyOp(bool use_boundary_neighbor=false)
Definition AMReX_NeighborParticlesGPUImpl.H:127
void updateNeighborsGPU(bool boundary_neighbors_only=false)
Definition AMReX_NeighborParticlesGPUImpl.H:252
void buildNeighborMask()
Definition AMReX_NeighborParticlesGPUImpl.H:55
void fillNeighborsGPU()
Definition AMReX_NeighborParticlesGPUImpl.H:232
Dynamically allocated vector for trivially copyable data.
Definition AMReX_PODVector.H:308
size_type size() const noexcept
Definition AMReX_PODVector.H:648
iterator begin() noexcept
Definition AMReX_PODVector.H:674
iterator end() noexcept
Definition AMReX_PODVector.H:678
T * dataPtr() noexcept
Definition AMReX_PODVector.H:670
T * data() noexcept
Definition AMReX_PODVector.H:666
void push_back(const T &a_value)
Definition AMReX_PODVector.H:629
This provides length of period for periodic domains. 0 means it is not periodic in that direction....
Definition AMReX_Periodicity.H:17
std::vector< IntVect > shiftIntVect(IntVect const &nghost=IntVect(0)) const
Definition AMReX_Periodicity.cpp:8
OutIter exclusive_scan(InIter begin, InIter end, OutIter result)
Definition AMReX_Scan.H:1440
Arena * The_Comms_Arena()
Definition AMReX_Arena.cpp:865
void copyAsync(HostToDevice, InIter begin, InIter end, OutIter result) noexcept
A host-to-device copy routine. Note this is just a wrapper around memcpy, so it assumes contiguous st...
Definition AMReX_GpuContainers.H:228
static constexpr HostToDevice hostToDevice
Definition AMReX_GpuContainers.H:105
void streamSynchronize() noexcept
Definition AMReX_GpuDevice.H:310
void dtoh_memcpy_async(void *p_h, const void *p_d, const std::size_t sz) noexcept
Definition AMReX_GpuDevice.H:435
void htod_memcpy_async(void *p_d, const void *p_h, const std::size_t sz) noexcept
Definition AMReX_GpuDevice.H:421
int global_to_local_rank(int rank) noexcept
Definition AMReX_ParallelContext.H:98
bool UseGpuAwareMpi()
Definition AMReX_ParallelDescriptor.H:113
Definition AMReX_Amr.cpp:49
__host__ __device__ BoxND< dim > adjCellHi(const BoxND< dim > &b, int dir, int len=1) noexcept
Similar to adjCellLo but builds an adjacent BoxND on the high end.
Definition AMReX_Box.H:1735
void communicateParticlesStart(const PC &pc, ParticleCopyPlan &plan, const SndBuffer &snd_buffer, RcvBuffer &rcv_buffer)
Definition AMReX_ParticleCommunication.H:505
__host__ __device__ BoxND< dim > adjCellLo(const BoxND< dim > &b, int dir, int len=1) noexcept
Return the cell centered BoxND of length len adjacent to b on the low end along the coordinate direct...
Definition AMReX_Box.H:1714
void unpackRemotes(PC &pc, const ParticleCopyPlan &plan, Buffer &rcv_buffer, UnpackPolicy const &policy)
Definition AMReX_ParticleCommunication.H:605
BoxND< 3 > Box
Box is an alias for amrex::BoxND instantiated with AMREX_SPACEDIM.
Definition AMReX_BaseFwd.H:30
void communicateParticlesFinish(const ParticleCopyPlan &plan)
Definition AMReX_ParticleCommunication.cpp:384
IntVectND< 3 > IntVect
IntVect is an alias for amrex::IntVectND instantiated with AMREX_SPACEDIM.
Definition AMReX_BaseFwd.H:33
int numParticlesOutOfRange(Iterator const &pti, int nGrow)
Returns the number of particles that are more than nGrow cells from the box correspond to the input i...
Definition AMReX_ParticleUtil.H:34
void RemoveDuplicates(Vector< T > &vec)
Definition AMReX_Vector.H:211
void unpackBuffer(PC &pc, const ParticleCopyPlan &plan, const Buffer &snd_buffer, UnpackPolicy const &policy)
Definition AMReX_ParticleCommunication.H:440
void packBuffer(const PC &pc, const ParticleCopyOp &op, const ParticleCopyPlan &plan, Buffer &snd_buffer)
Definition AMReX_ParticleCommunication.H:336
__host__ __device__ IntVect getParticleCell(P const &p, amrex::GpuArray< amrex::Real, 3 > const &plo, amrex::GpuArray< amrex::Real, 3 > const &dxi) noexcept
Returns the cell index for a given particle using the provided lower bounds and cell sizes.
Definition AMReX_ParticleUtil.H:336
Definition AMReX_NeighborParticles.H:16
IntVect periodic_shift
Definition AMReX_NeighborParticles.H:18
int grid_id
Definition AMReX_NeighborParticles.H:17
Definition AMReX_NeighborParticles.H:432
Definition AMReX_ParticleCommunication.H:19