Commit 9410e049 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Erasing MPI_COMM_WORLD, using AllGroup instead.

parent d95a22b1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -967,10 +967,10 @@ template< typename Value, typename Device, typename Index, typename Allocator >
File& operator>>( File&& file, Array< Value, Device, Index, Allocator >& array );

template< typename Value, typename Device, typename Index, typename Allocator >
void send( const Array< Value, Device, Index, Allocator >& array, int dest, int tag = 0, MPI_Comm comm = MPI_COMM_WORLD );
void send( const Array< Value, Device, Index, Allocator >& array, int dest, int tag = 0, MPI_Comm comm = MPI::AllGroup );

template< typename Value, typename Device, typename Index, typename Allocator >
void receive( Array< Value, Device, Index, Allocator >& array, int src, int tag = 0, MPI_Comm comm = MPI_COMM_WORLD );
void receive( Array< Value, Device, Index, Allocator >& array, int src, int tag = 0, MPI_Comm comm = MPI::AllGroup );


} // namespace Containers
+1 −1
Original line number Diff line number Diff line
@@ -769,7 +769,7 @@ template< typename Value, typename Device, typename Index >
File& operator>>( File&& file, ArrayView< Value, Device, Index > view );

template< typename Value, typename Device, typename Index >
void send( const ArrayView< Value, Device, Index >& view, int dest, int tag = 0, MPI_Comm comm = MPI_COMM_WORLD );
void send( const ArrayView< Value, Device, Index >& view, int dest, int tag = 0, MPI_Comm comm = MPI::AllGroup );


} // namespace Containers
+0 −1
Original line number Diff line number Diff line
@@ -47,6 +47,5 @@ enum {
#define MPI_CART               1                       /* cartesian topology */
#define MPI_GRAPH              2                       /* graph topology */
#define MPI_KEYVAL_INVALID     -1                      /* invalid key value */
#define MPI_COMM_WORLD         0

#endif