mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
22 lines
409 B
C++
22 lines
409 B
C++
#ifndef NG_MPI_NATIVE_HPP
|
|
#define NG_MPI_NATIVE_HPP
|
|
|
|
#include <mpi.h>
|
|
|
|
#include "mpi_wrapper.hpp"
|
|
#include "ng_mpi.hpp"
|
|
|
|
namespace ngcore {
|
|
|
|
MPI_Comm NG_MPI_Native(NG_MPI_Comm comm) {
|
|
return reinterpret_cast<MPI_Comm>(comm.value);
|
|
}
|
|
|
|
MPI_Comm NG_MPI_Native(NgMPI_Comm comm) {
|
|
return reinterpret_cast<MPI_Comm>(static_cast<NG_MPI_Comm>(comm).value);
|
|
}
|
|
|
|
} // namespace ngcore
|
|
|
|
#endif // NG_MPI_NATIVE_HPP
|