TRIQS/mpi 1.3.0
C++ interface to MPI
|
#include "./communicator.hpp"
#include "./generic_communication.hpp"
#include "./ranges.hpp"
#include <string>
Provides an MPI broadcast and gather for std::string
.
Definition in file string.hpp.
Go to the source code of this file.
Functions | |
void | mpi::mpi_broadcast (std::string &s, communicator c, int root) |
Implementation of an MPI broadcast for a std::string . | |
void | mpi::mpi_gather_into (std::string const &s_in, std::string &s_out, communicator c={}, int root=0, bool all=false) |
Implementation of an MPI gather for a std::string that gathers directly into an existing output string. | |