mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
remove old mpi-wrapper
This commit is contained in:
parent
9b44069e54
commit
4f09633b80
@ -2,7 +2,6 @@ target_sources(nglib PRIVATE
|
||||
dynamicmem.cpp
|
||||
gzstream.cpp
|
||||
hashtabl.cpp
|
||||
mpi_interface.cpp
|
||||
mystring.cpp
|
||||
ngarray.cpp
|
||||
ngbitarray.cpp
|
||||
|
@ -4,6 +4,7 @@
|
||||
/* Date: 04. Apr. 97 */
|
||||
/**************************************************************************/
|
||||
|
||||
#ifdef OLD
|
||||
#include <mystdlib.h>
|
||||
#include <myadt.hpp>
|
||||
|
||||
@ -50,3 +51,4 @@ namespace netgen
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -2,7 +2,6 @@
|
||||
#define FILE_PARALLEL
|
||||
|
||||
|
||||
|
||||
#ifdef VTRACE
|
||||
#include "vt_user.h"
|
||||
#else
|
||||
|
@ -43,7 +43,7 @@ namespace netgen
|
||||
#include "stack.hpp"
|
||||
#include "mystring.hpp"
|
||||
|
||||
#include "mpi_interface.hpp"
|
||||
// #include "mpi_interface.hpp"
|
||||
#include "netgenout.hpp"
|
||||
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
// #include <ostream>
|
||||
// #include <mystdlib.h>
|
||||
// #include <meshing.hpp>
|
||||
#include "mpi_interface.hpp"
|
||||
// #include "mpi_interface.hpp"
|
||||
|
||||
namespace netgen
|
||||
{
|
||||
|
@ -17,6 +17,9 @@ namespace netgen
|
||||
{
|
||||
using namespace std;
|
||||
|
||||
static constexpr int MPI_TAG_MESH = 210;
|
||||
|
||||
|
||||
enum resthtype { RESTRICTH_FACE, RESTRICTH_EDGE,
|
||||
RESTRICTH_SURFACEELEMENT, RESTRICTH_POINT, RESTRICTH_SEGMENT };
|
||||
|
||||
|
@ -500,7 +500,8 @@ namespace netgen
|
||||
}
|
||||
|
||||
DynamicTable<int> recv_verts(ntasks);
|
||||
MyMPI_ExchangeTable (send_verts, recv_verts, MPI_TAG_MESH+9, comm);
|
||||
// MyMPI_ExchangeTable (send_verts, recv_verts, MPI_TAG_MESH+9, comm);
|
||||
comm.ExchangeTable (send_verts, recv_verts, MPI_TAG_MESH+9);
|
||||
|
||||
for (int dest = 0; dest < ntasks; dest++)
|
||||
if (dest != id)
|
||||
@ -692,7 +693,8 @@ namespace netgen
|
||||
// cout << "UpdateCoarseGrid - edges mpi-exchange" << endl;
|
||||
// TABLE<int> recv_edges(ntasks);
|
||||
DynamicTable<int> recv_edges(ntasks);
|
||||
MyMPI_ExchangeTable (send_edges, recv_edges, MPI_TAG_MESH+9, comm);
|
||||
// MyMPI_ExchangeTable (send_edges, recv_edges, MPI_TAG_MESH+9, comm);
|
||||
comm.ExchangeTable (send_edges, recv_edges, MPI_TAG_MESH+9);
|
||||
// cout << "UpdateCoarseGrid - edges mpi-exchange done" << endl;
|
||||
|
||||
for (int dest = 0; dest < ntasks; dest++)
|
||||
@ -800,7 +802,8 @@ namespace netgen
|
||||
// cout << "UpdateCoarseGrid - faces mpi-exchange" << endl;
|
||||
// TABLE<int> recv_faces(ntasks);
|
||||
DynamicTable<int> recv_faces(ntasks);
|
||||
MyMPI_ExchangeTable (send_faces, recv_faces, MPI_TAG_MESH+9, comm);
|
||||
// MyMPI_ExchangeTable (send_faces, recv_faces, MPI_TAG_MESH+9, comm);
|
||||
comm.ExchangeTable (send_faces, recv_faces, MPI_TAG_MESH+9);
|
||||
// cout << "UpdateCoarseGrid - faces mpi-exchange done" << endl;
|
||||
|
||||
for (int dest = 0; dest < ntasks; dest++)
|
||||
|
Loading…
Reference in New Issue
Block a user