Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge remote-tracking branch 'origin/master'
[simgrid.git] / examples / smpi / MM / topo.h
1 #ifndef topo_H_
2 #define topo_H_
3 #include <mpi.h>
4
5 /*!
6  * \defgroup topo.h
7  * file related to the plateform description.
8  *
9  * provide a communicator between the process on the same node*/
10 int split_comm_intra_node(MPI_Comm comm, MPI_Comm* comm_intra, int key);
11
12
13 int* get_index(MPI_Comm comm, MPI_Comm comm_intra);
14 char** get_names(MPI_Comm comm);
15
16 #endif /*topo_H_*/