|
Galois
|
Contains NetworkIO, a base class that is inherited by classes that want to implement the communication layer of Galois. More...
#include <cstdint>#include <vector>#include <tuple>#include <memory>#include <cassert>#include <cstring>#include <deque>#include <string>#include <fstream>#include <unistd.h>#include <mpi.h>#include "galois/runtime/MemUsage.h"#include "galois/PODResizeableArray.h"Go to the source code of this file.
Classes | |
| class | galois::runtime::NetworkIO |
| Class for the network IO layer which is responsible for doing sends/receives of data. More... | |
| struct | galois::runtime::NetworkIO::message |
| Message structure for sending data across the network. More... | |
Namespaces | |
| galois | |
| The Galois namespace containing all Galois structures and functions. | |
| galois::runtime | |
| Internal Galois functionality - Use at your own risk. | |
Functions | |
| std::tuple< std::unique_ptr < NetworkIO >, uint32_t, uint32_t > | galois::runtime::makeNetworkIOMPI (galois::runtime::MemUsageTracker &tracker, std::atomic< size_t > &sends, std::atomic< size_t > &recvs) |
| Creates/returns a network IO layer that uses MPI to do communication. More... | |
Contains NetworkIO, a base class that is inherited by classes that want to implement the communication layer of Galois.
(e.g. NetworkIOMPI and NetworkIOLWCI)