get rid of ng_comm

This commit is contained in:
Joachim Schöberl 2019-02-12 22:16:53 +01:00
parent 734e96c87c
commit 656301b2b2

View File

@ -179,10 +179,10 @@ namespace ngcore
template<typename T> template<typename T>
void MyMPI_Recv (T & val, int src, int tag) const { ; } void MyMPI_Recv (T & val, int src, int tag) const { ; }
template <typename T, typename T2 = decltype(GetMPIType<T>())> template <typename T>
T AllReduce (T d, const MPI_Op & op) const { return d; } T AllReduce (T d, const MPI_Op & op) const { return d; }
template <typename T, typename T2 = decltype(GetMPIType<T>())> template <typename T>
INLINE void Bcast (T & s, int root = 0) const { ; } INLINE void Bcast (T & s, int root = 0) const { ; }
}; };