Skip to content
Snippets Groups Projects
Commit 4da71c74 authored by wenqing's avatar wenqing Committed by Dmitri Naumov
Browse files

[IO] Changed a communication function in readASCII of NodePartitionedMeshReader.

parent 6d2a873a
No related branches found
No related tags found
No related merge requests found
...@@ -370,8 +370,6 @@ MeshLib::NodePartitionedMesh* NodePartitionedMeshReader ...@@ -370,8 +370,6 @@ MeshLib::NodePartitionedMesh* NodePartitionedMeshReader
std::vector<MeshLib::Node*> mesh_nodes; std::vector<MeshLib::Node*> mesh_nodes;
std::vector<unsigned> glb_node_ids; std::vector<unsigned> glb_node_ids;
std::vector<MeshLib::Element*> mesh_elems; std::vector<MeshLib::Element*> mesh_elems;
int tag = 0;
MPI_Status status;
for(int i=0; i<_size; i++) for(int i=0; i<_size; i++)
{ {
...@@ -382,17 +380,10 @@ MeshLib::NodePartitionedMesh* NodePartitionedMeshReader ...@@ -382,17 +380,10 @@ MeshLib::NodePartitionedMesh* NodePartitionedMeshReader
for(long j=0; j< num_controls; j++) for(long j=0; j< num_controls; j++)
is_cfg >> mesh_controls[j]; is_cfg >> mesh_controls[j];
is_cfg >> std::ws; is_cfg >> std::ws;
if(i > 0)
{
MPI_Send(mesh_controls, num_controls, MPI_LONG, i, tag, mpi_comm_);
}
}
else if(i > 0 && _rank == i)
{
MPI_Recv(mesh_controls, num_controls, MPI_LONG, 0, tag, mpi_comm_, &status);
} }
MPI_Bcast(mesh_controls, num_controls, MPI_LONG, 0, mpi_comm_);
_num_nodes_part = mesh_controls[0]; _num_nodes_part = mesh_controls[0];
_num_regular_elems_part = mesh_controls[2]; _num_regular_elems_part = mesh_controls[2];
_num_ghost_elems_part = mesh_controls[3]; _num_ghost_elems_part = mesh_controls[3];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment