19 void send<bool>(MPI::Comm& comm,
bool& data,
int dest,
int tag)
21 int value = data ? 1 : 0;
26 void recv<bool>(MPI::Comm& comm,
bool& data,
int source,
int tag)
30 data = value ? true :
false;
37 int rank = comm.Get_rank();
42 data = value ? true :
false;
52 int count = data.size() + 1;
56 char* cstr =
new char[count];
57 strcpy(cstr, data.c_str());
72 char* cstr =
new char[count];
82 int rank = comm.Get_rank();
87 count = data.size() + 1;
91 char* cstr =
new char[count];
93 strcpy(cstr, data.c_str());
This file contains templates for global functions send<T>, recv<T> and bcast<T>.
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.