2#ifndef UTIL_MPI_SEND_RECV_H
3#define UTIL_MPI_SEND_RECV_H
78#include <util/mpi/MpiTraits.h>
79#include <util/containers/DArray.h>
80#include <util/containers/DMatrix.h>
99 void send(MPI::Comm& comm, T& data,
int dest,
int tag)
102 UTIL_THROW(
"No committed MPI type in send<T>");
117 template <
typename T>
118 void recv(MPI::Comm& comm, T& data,
int source,
int tag)
121 UTIL_THROW(
"No committed MPI type in recv<T>");
135 template <
typename T>
136 void bcast(MPI::Intracomm& comm, T& data,
int root)
139 UTIL_THROW(
"No committed MPI type in bcast<T>");
157 template <
typename T>
158 void send(MPI::Comm& comm, T* array,
int count,
int dest,
int tag)
165 for (
int i = 0; i < count; ++i) {
166 send<T>(comm, array[i], dest, tag);
183 template <
typename T>
184 void recv(MPI::Comm& comm, T* array,
int count,
int source,
int tag)
191 for (
int i = 0; i < count; ++i) {
192 recv<T>(comm, array[i], source, tag);
208 template <
typename T>
209 void bcast(MPI::Intracomm& comm, T* array,
int count,
int root)
216 for (
int i = 0; i < count; ++i) {
236 template <
typename T>
244 UTIL_THROW(
"Error: Logical size count > DArray capacity");
252 for (
int i = 0; i < count; ++i) {
253 send<T>(comm, array[i], dest, tag);
270 template <
typename T>
271 void recv(MPI::Comm& comm,
DArray<T>& array,
int count,
int source,
int tag)
278 UTIL_THROW(
"Error: Logical size count > DArray capacity");
286 for (
int i = 0; i < count; ++i) {
287 recv<T>(comm, array[i], source, tag);
303 template <
typename T>
311 UTIL_THROW(
"Error: Logical size count > DArray capacity");
319 for (
int i = 0; i < count; ++i) {
340 template <
typename T>
345 UTIL_THROW(
"Cannot read unallocated DMatrix");
348 UTIL_THROW(
"Error: Logical size m > DMatrix<T>::capacity1()");
351 UTIL_THROW(
"Error: Logical size n > DMatrix<T>::capacity2()");
363 for (i = 0; i < m; ++i) {
364 for (j = 0; j < n; ++j) {
365 send<T>(comm, matrix(i, j), dest, tag);
384 template <
typename T>
390 UTIL_THROW(
"Cannot recv unallocated DMatrix");
393 UTIL_THROW(
"Error: Logical size m > DMatrix<T>::capacity1()");
396 UTIL_THROW(
"Error: Logical size n > DMatrix<T>::capacity2()");
408 for (i = 0; i < m; ++i) {
409 for (j = 0; j < n; ++j) {
410 recv<T>(comm, matrix(i, j), source, tag);
428 template <
typename T>
433 UTIL_THROW(
"Cannot bcast unallocated DMatrix");
436 UTIL_THROW(
"Error: Logical size m > DMatrix<T>::capacity1()");
439 UTIL_THROW(
"Error: Logical size n > DMatrix<T>::capacity2()");
451 for (i = 0; i < m; ++i) {
452 for (j = 0; j < n; ++j) {
465 void send<bool>(MPI::Comm& comm,
bool& data,
int dest,
int tag);
471 void recv<bool>(MPI::Comm& comm,
bool& data,
int source,
int tag);
477 void bcast<bool>(MPI::Intracomm& comm,
bool& data,
int root);
int capacity() const
Return allocated size.
Dynamically allocatable contiguous array template.
bool isAllocated() const
Return true if this DArray has been allocated, false otherwise.
Dynamically allocated Matrix.
bool isAllocated() const
Return true if the DMatrix has been allocated, false otherwise.
int capacity2() const
Get number of columns (range of the second array index).
int capacity1() const
Get number of rows (range of the first array index).
File containing preprocessor macros for error handling.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Utility classes for scientific computation.
void send(MPI::Comm &comm, T &data, int dest, int tag)
Send a single T value.
void recv< std::string >(MPI::Comm &comm, std::string &data, int source, int tag)
Explicit specialization of recv for std::string data.
void send< bool >(MPI::Comm &comm, bool &data, int dest, int tag)
Explicit specialization of send for bool data.
void recv< bool >(MPI::Comm &comm, bool &data, int source, int tag)
Explicit specialization of recv for bool data.
void bcast< std::string >(MPI::Intracomm &comm, std::string &data, int root)
Explicit specialization of bcast for std::string data.
void bcast(MPI::Intracomm &comm, T &data, int root)
Broadcast a single T value.
void bcast< bool >(MPI::Intracomm &comm, bool &data, int root)
Explicit specialization of bcast for bool data.
void recv(MPI::Comm &comm, T &data, int source, int tag)
Receive a single T value.
void send< std::string >(MPI::Comm &comm, std::string &data, int dest, int tag)
Explicit specialization of send for std::string data.