netgen/libsrc/general/mpi_interface.hpp

269 lines
7.4 KiB
C++
Raw Normal View History

2009-01-13 04:40:13 +05:00
#ifndef FILE_PARALLEL
#define FILE_PARALLEL
#ifdef VTRACE
#include "vt_user.h"
#else
#define VT_USER_START(n)
#define VT_USER_END(n)
#define VT_TRACER(n)
#endif
2009-07-20 14:36:36 +06:00
namespace netgen
{
2019-02-13 02:11:55 +05:00
#ifdef OLD
2019-01-31 00:55:45 +05:00
#ifdef PARALLEL
2009-01-13 04:40:13 +05:00
template <class T>
2019-01-31 00:55:45 +05:00
inline MPI_Datatype MyGetMPIType ( )
2012-06-16 22:58:46 +06:00
{ cerr << "ERROR in GetMPIType() -- no type found" << endl;return 0; }
2009-01-13 04:40:13 +05:00
template <>
2012-06-16 22:58:46 +06:00
inline MPI_Datatype MyGetMPIType<int> ( )
2009-01-13 04:40:13 +05:00
{ return MPI_INT; }
template <>
inline MPI_Datatype MyGetMPIType<double> ( )
{ return MPI_DOUBLE; }
template <>
inline MPI_Datatype MyGetMPIType<char> ( )
{ return MPI_CHAR; }
2019-01-31 00:55:45 +05:00
template<>
inline MPI_Datatype MyGetMPIType<size_t> ( )
{ return MPI_UINT64_T; }
#else
typedef int MPI_Datatype;
template <class T> inline MPI_Datatype MyGetMPIType ( ) { return 0; }
#endif
2020-07-31 12:57:19 +05:00
#endif
2019-01-31 00:55:45 +05:00
2020-07-31 12:57:19 +05:00
2019-01-31 00:55:45 +05:00
#ifdef PARALLEL
enum { MPI_TAG_CMD = 110 };
enum { MPI_TAG_MESH = 210 };
enum { MPI_TAG_VIS = 310 };
2020-07-31 12:57:19 +05:00
[[deprecated("mympi_send int, use comm.Send instead")]]
inline void MyMPI_Send (int i, int dest, int tag, MPI_Comm comm)
2009-01-13 04:40:13 +05:00
{
int hi = i;
MPI_Send( &hi, 1, MPI_INT, dest, tag, comm);
2009-01-13 04:40:13 +05:00
}
2020-07-31 12:57:19 +05:00
[[deprecated("mympi_revc int, use comm.Recv instead")]]
inline void MyMPI_Recv (int & i, int src, int tag, MPI_Comm comm)
2009-01-13 04:40:13 +05:00
{
MPI_Status status;
MPI_Recv( &i, 1, MPI_INT, src, tag, comm, &status);
2009-01-13 04:40:13 +05:00
}
2020-08-05 04:11:26 +05:00
[[deprecated("mympi_send string, use comm.Send instead")]]
2020-07-31 12:57:19 +05:00
inline void MyMPI_Send (const string & s, int dest, int tag, MPI_Comm comm)
2009-01-13 04:40:13 +05:00
{
MPI_Send( const_cast<char*> (s.c_str()), s.length(), MPI_CHAR, dest, tag, comm);
2009-01-13 04:40:13 +05:00
}
2020-08-05 04:11:26 +05:00
[[deprecated("mympi_revc string, use comm.Recv instead")]]
2020-07-31 12:57:19 +05:00
inline void MyMPI_Recv (string & s, int src, int tag, MPI_Comm comm)
2009-01-13 04:40:13 +05:00
{
MPI_Status status;
int len;
2011-07-07 03:08:58 +06:00
MPI_Probe (src, tag, MPI_COMM_WORLD, &status);
2009-01-13 04:40:13 +05:00
MPI_Get_count (&status, MPI_CHAR, &len);
s.assign (len, ' ');
MPI_Recv( &s[0], len, MPI_CHAR, src, tag, comm, &status);
2009-01-13 04:40:13 +05:00
}
template <class T, int BASE>
2020-08-05 04:11:26 +05:00
[[deprecated("mympi_send ngflatarray, use comm.send instead")]]
2020-07-31 12:57:19 +05:00
inline void MyMPI_Send (NgFlatArray<T, BASE> s, int dest, int tag, MPI_Comm comm)
2009-01-13 04:40:13 +05:00
{
2020-07-31 12:57:19 +05:00
MPI_Send( &s.First(), s.Size(), GetMPIType<T>(), dest, tag, comm);
2009-01-13 04:40:13 +05:00
}
template <class T, int BASE>
2020-08-05 04:11:26 +05:00
[[deprecated("mympi_recv ngflatarray, use comm.Recv instead")]]
2020-07-31 12:57:19 +05:00
inline void MyMPI_Recv ( NgFlatArray<T, BASE> s, int src, int tag, MPI_Comm comm)
2009-01-13 04:40:13 +05:00
{
MPI_Status status;
2020-07-31 12:57:19 +05:00
MPI_Recv( &s.First(), s.Size(), GetMPIType<T>(), src, tag, comm, &status);
2009-01-13 04:40:13 +05:00
}
template <class T, int BASE>
2020-07-31 12:57:19 +05:00
inline void MyMPI_Recv ( NgArray <T, BASE> & s, int src, int tag, MPI_Comm comm)
2009-01-13 04:40:13 +05:00
{
MPI_Status status;
int len;
MPI_Probe (src, tag, comm, &status);
2020-07-31 12:57:19 +05:00
MPI_Get_count (&status, GetMPIType<T>(), &len);
2009-01-13 04:40:13 +05:00
s.SetSize (len);
2020-07-31 12:57:19 +05:00
MPI_Recv( &s.First(), len, GetMPIType<T>(), src, tag, comm, &status);
2009-01-13 04:40:13 +05:00
}
template <class T, int BASE>
2020-07-31 12:57:19 +05:00
inline int MyMPI_Recv ( NgArray <T, BASE> & s, int tag, MPI_Comm comm)
2009-01-13 04:40:13 +05:00
{
MPI_Status status;
int len;
MPI_Probe (MPI_ANY_SOURCE, tag, comm, &status);
2009-01-13 04:40:13 +05:00
int src = status.MPI_SOURCE;
2020-07-31 12:57:19 +05:00
MPI_Get_count (&status, GetMPIType<T>(), &len);
2009-01-13 04:40:13 +05:00
s.SetSize (len);
2020-07-31 12:57:19 +05:00
MPI_Recv( &s.First(), len, GetMPIType<T>(), src, tag, comm, &status);
2009-01-13 04:40:13 +05:00
return src;
}
2011-07-15 03:36:19 +06:00
/*
2009-01-13 04:40:13 +05:00
template <class T, int BASE>
2019-07-09 13:40:35 +05:00
inline void MyMPI_ISend (NgFlatArray<T, BASE> s, int dest, int tag, MPI_Request & request)
2009-01-13 04:40:13 +05:00
{
2011-07-07 03:08:58 +06:00
MPI_Isend( &s.First(), s.Size(), MyGetMPIType<T>(), dest, tag, MPI_COMM_WORLD, & request);
2009-01-13 04:40:13 +05:00
}
template <class T, int BASE>
2019-07-09 13:40:35 +05:00
inline void MyMPI_IRecv (NgFlatArray<T, BASE> s, int dest, int tag, MPI_Request & request)
2009-01-13 04:40:13 +05:00
{
2011-07-07 03:08:58 +06:00
MPI_Irecv( &s.First(), s.Size(), MyGetMPIType<T>(), dest, tag, MPI_COMM_WORLD, & request);
2009-01-13 04:40:13 +05:00
}
2011-07-07 03:08:58 +06:00
*/
2009-01-13 04:40:13 +05:00
template <class T, int BASE>
2020-08-05 04:11:26 +05:00
[[deprecated("mympi_isend ngflatarray, use comm.send instead")]]
2020-07-31 12:57:19 +05:00
inline MPI_Request MyMPI_ISend (NgFlatArray<T, BASE> s, int dest, int tag, MPI_Comm comm)
2009-01-13 04:40:13 +05:00
{
MPI_Request request;
2020-07-31 12:57:19 +05:00
MPI_Isend( &s.First(), s.Size(), GetMPIType<T>(), dest, tag, comm, &request);
2009-01-13 04:40:13 +05:00
return request;
}
template <class T, int BASE>
2020-08-05 04:11:26 +05:00
[[deprecated("mympi_irecv ngflatarray, use comm.recv instead")]]
2020-07-31 12:57:19 +05:00
inline MPI_Request MyMPI_IRecv (NgFlatArray<T, BASE> s, int dest, int tag, MPI_Comm comm)
2009-01-13 04:40:13 +05:00
{
MPI_Request request;
2020-07-31 12:57:19 +05:00
MPI_Irecv( &s.First(), s.Size(), GetMPIType<T>(), dest, tag, comm, &request);
2009-01-13 04:40:13 +05:00
return request;
}
2020-07-31 12:57:19 +05:00
2011-07-15 03:36:19 +06:00
/*
2011-07-04 18:29:18 +06:00
template <class T, int BASE>
2019-07-09 13:40:35 +05:00
inline void MyMPI_ISend (NgFlatArray<T, BASE> s, int dest, int tag)
2011-07-04 18:29:18 +06:00
{
MPI_Request request;
2011-07-07 03:08:58 +06:00
MPI_Isend( &s.First(), s.Size(), MyGetMPIType<T>(), dest, tag, MPI_COMM_WORLD, &request);
2011-07-04 18:29:18 +06:00
MPI_Request_free (&request);
}
template <class T, int BASE>
2019-07-09 13:40:35 +05:00
inline void MyMPI_IRecv (NgFlatArray<T, BASE> s, int dest, int tag)
2011-07-04 18:29:18 +06:00
{
MPI_Request request;
2011-07-07 03:08:58 +06:00
MPI_Irecv( &s.First(), s.Size(), MyGetMPIType<T>(), dest, tag, MPI_COMM_WORLD, &request);
2011-07-04 18:29:18 +06:00
MPI_Request_free (&request);
}
2011-07-15 03:36:19 +06:00
*/
2009-01-13 04:40:13 +05:00
2012-06-16 18:03:36 +06:00
/*
2018-01-08 20:45:53 +05:00
send a table entry to each of the processes in the group ...
2012-06-16 18:03:36 +06:00
receive-table entries will be set
*/
2012-09-03 15:49:18 +06:00
2012-08-31 01:24:20 +06:00
template <typename T>
inline void MyMPI_ExchangeTable (TABLE<T> & send_data,
TABLE<T> & recv_data, int tag,
2020-07-31 12:57:19 +05:00
const NgMPI_Comm & comm)
2012-08-31 01:24:20 +06:00
{
2019-02-13 02:11:55 +05:00
int rank = comm.Rank();
int ntasks = comm.Size();
2020-07-31 12:57:19 +05:00
Array<int> send_sizes(ntasks);
Array<int> recv_sizes(ntasks);
2012-08-31 01:24:20 +06:00
for (int i = 0; i < ntasks; i++)
send_sizes[i] = send_data[i].Size();
2012-09-03 15:49:18 +06:00
2020-07-31 12:57:19 +05:00
comm.AllToAll (send_sizes, recv_sizes);
2012-08-31 01:24:20 +06:00
for (int i = 0; i < ntasks; i++)
2012-09-03 15:49:18 +06:00
recv_data.SetEntrySize (i, recv_sizes[i], sizeof(T));
2012-08-31 01:24:20 +06:00
2020-07-31 12:57:19 +05:00
Array<MPI_Request> requests;
2012-08-31 01:24:20 +06:00
for (int dest = 0; dest < ntasks; dest++)
if (dest != rank && send_data[dest].Size())
2020-07-31 12:57:19 +05:00
requests.Append (comm.ISend (FlatArray<T>(send_data[dest]), dest, tag));
2012-08-31 01:24:20 +06:00
for (int dest = 0; dest < ntasks; dest++)
if (dest != rank && recv_data[dest].Size())
2020-07-31 12:57:19 +05:00
requests.Append (comm.IRecv (FlatArray<T>(recv_data[dest]), dest, tag));
2012-08-31 01:24:20 +06:00
2020-07-31 12:57:19 +05:00
MyMPI_WaitAll (requests);
2012-08-31 01:24:20 +06:00
}
2012-06-16 22:58:46 +06:00
extern void MyMPI_SendCmd (const char * cmd);
extern string MyMPI_RecvCmd ();
2009-01-13 04:40:13 +05:00
2011-11-01 18:54:07 +06:00
2009-01-13 04:40:13 +05:00
template <class T>
2020-07-31 12:57:19 +05:00
inline void MyMPI_Bcast (T & s, MPI_Comm comm)
2009-01-13 04:40:13 +05:00
{
2020-07-31 12:57:19 +05:00
MPI_Bcast (&s, 1, GetMPIType<T>(), 0, comm);
2009-01-13 04:40:13 +05:00
}
template <class T>
2020-07-31 12:57:19 +05:00
inline void MyMPI_Bcast (NgArray<T, 0> & s, NgMPI_Comm comm)
2009-01-13 04:40:13 +05:00
{
int size = s.Size();
MyMPI_Bcast (size, comm);
2019-02-13 02:11:55 +05:00
// if (MyMPI_GetId(comm) != 0) s.SetSize (size);
if (comm.Rank() != 0) s.SetSize (size);
2020-07-31 12:57:19 +05:00
MPI_Bcast (&s[0], size, GetMPIType<T>(), 0, comm);
2009-01-13 04:40:13 +05:00
}
template <class T>
2020-07-31 12:57:19 +05:00
inline void MyMPI_Bcast (NgArray<T, 0> & s, int root, MPI_Comm comm)
2009-01-13 04:40:13 +05:00
{
int id;
2011-06-26 13:35:08 +06:00
MPI_Comm_rank(comm, &id);
2009-01-13 04:40:13 +05:00
int size = s.Size();
MPI_Bcast (&size, 1, MPI_INT, root, comm);
if (id != root) s.SetSize (size);
if ( !size ) return;
2020-07-31 12:57:19 +05:00
MPI_Bcast (&s[0], size, GetMPIType<T>(), root, comm);
2009-01-13 04:40:13 +05:00
}
template <class T, class T2>
2020-08-05 04:11:26 +05:00
[[deprecated("mympi_allgather deprecated, use comm.allgather")]]
2020-07-31 12:57:19 +05:00
inline void MyMPI_Allgather (const T & send, NgFlatArray<T2> recv, MPI_Comm comm)
2009-01-13 04:40:13 +05:00
{
2020-07-31 12:57:19 +05:00
MPI_Allgather( const_cast<T*> (&send), 1, GetMPIType<T>(), &recv[0], 1, GetMPIType<T2>(), comm);
2009-01-13 04:40:13 +05:00
}
template <class T, class T2>
2020-08-05 04:11:26 +05:00
[[deprecated("mympi_alltoall deprecated, use comm.alltoall")]]
2020-07-31 12:57:19 +05:00
inline void MyMPI_Alltoall (NgFlatArray<T> send, NgFlatArray<T2> recv, MPI_Comm comm)
2009-01-13 04:40:13 +05:00
{
2020-07-31 12:57:19 +05:00
MPI_Alltoall( &send[0], 1, GetMPIType<T>(), &recv[0], 1, GetMPIType<T2>(), comm);
2009-01-13 04:40:13 +05:00
}
#endif // PARALLEL
2009-07-20 14:36:36 +06:00
}
2009-01-13 04:40:13 +05:00
#endif