10#ifndef MILUPHPC_SUBDOMAIN_HANDLER_H
11#define MILUPHPC_SUBDOMAIN_HANDLER_H
13#include "../parameter.h"
15#include <boost/mpi.hpp>
137 template <
typename T>
140 boost::mpi::communicator comm;
142 std::vector <boost::mpi::request> reqParticles;
143 std::vector <boost::mpi::status> statParticles;
145 for (
int proc = 0; proc < subDomainKeyTree->
numProcesses; proc++) {
146 if (proc != subDomainKeyTree->
rank) {
147 reqParticles.push_back(comm.isend(proc, 17, &toSend[proc], 1));
148 statParticles.push_back(comm.recv(proc, 17, &toReceive[proc], 1));
152 boost::mpi::wait_all(reqParticles.begin(), reqParticles.end());
DomainListHandler(integer domainListSize)
Constructor.
integer * d_relevantDomainListLevels
keyType * d_sortedDomainListKeys
device sorted domain list keys
integer * d_domainListIndices
device domain list indices
integer * d_domainListLevels
device domain list levels
integer domainListSize
length/size of domain list
keyType * d_domainListKeys
device domain list key
integer * d_relevantDomainListIndices
device relevant domain list indices
integer * d_relevantDomainListProcess
~DomainListHandler()
Destructor.
void reset()
Resetting entries.
DomainList * d_domainList
device instance of DomainList class
integer * d_domainListIndex
device domain list index
integer * d_domainListCounter
device domain list counter
integer * d_relevantDomainListOriginalIndex
keyType * h_range
host range(s)
SubDomainKeyTreeHandler()
Constructor.
integer h_rank
host MPI rank
integer * d_numProcesses
device MPI number of processes
SubDomainKeyTree * d_subDomainKeyTree
device instance of class SubDomainKeyTree
~SubDomainKeyTreeHandler()
Destructor.
SubDomainKeyTree * h_subDomainKeyTree
host instance of class SubDomainKeyTree
keyType * d_range
device range(s)
void reset()
Resetting member variables.
integer * h_procParticleCounter
host counter for particles in dependence of MPI process belonging
integer * d_rank
device MPI rank
integer h_numProcesses
host MPI number of processes
integer * d_procParticleCounter
host counter for particles in dependence of MPI process belonging
void copy(To::Target target=To::device, bool range=true, bool counter=true)
Copy (parts of the) SubDomainKeyTree instance(s) between host and device.
SubDomainKeyTree class handling rank, number of processes and ranges.
integer numProcesses
MPI number of processes.
void messageLengths(SubDomainKeyTree *subDomainKeyTree, T *toSend, T *toReceive)
Send array with length of number of MPI processes across processes.
Classes and Kernels handling subdomains that distribute the workload among the MPI processes.