Skip to content
Snippets Groups Projects
Commit 17413de0 authored by Tom Fischer's avatar Tom Fischer
Browse files

[MeL/IO] Make output of time consistent.

parent af65aeab
No related branches found
No related tags found
No related merge requests found
...@@ -79,18 +79,18 @@ MeshLib::NodePartitionedMesh* NodePartitionedMeshReader::read( ...@@ -79,18 +79,18 @@ MeshLib::NodePartitionedMesh* NodePartitionedMeshReader::read(
if(!BaseLib::IsFileExisting(fname_new)) // doesn't exist binary file. if(!BaseLib::IsFileExisting(fname_new)) // doesn't exist binary file.
{ {
INFO("-->Reading ASCII mesh file ..."); INFO("Reading ASCII mesh file ...");
mesh = readASCII(file_name_base); mesh = readASCII(file_name_base);
} }
else else
{ {
INFO("-->Reading binary mesh file ..."); INFO("Reading binary mesh file ...");
mesh = readBinary(file_name_base); mesh = readBinary(file_name_base);
} }
INFO("\t\n>>Total elapsed time in reading mesh:%f s\n", timer.elapsed()); INFO("[time] Reading the mesh took %f s.", timer.elapsed());
MPI_Barrier(_mpi_comm); MPI_Barrier(_mpi_comm);
...@@ -353,8 +353,6 @@ MeshLib::NodePartitionedMesh* NodePartitionedMeshReader::readASCII( ...@@ -353,8 +353,6 @@ MeshLib::NodePartitionedMesh* NodePartitionedMeshReader::readASCII(
std::vector<unsigned long> glb_node_ids; std::vector<unsigned long> glb_node_ids;
std::vector<MeshLib::Element*> mesh_elems; std::vector<MeshLib::Element*> mesh_elems;
INFO("-->Reading partitioned mesh.");
for(int i = 0; i < _mpi_comm_size; i++) for(int i = 0; i < _mpi_comm_size; i++)
{ {
if(_mpi_rank == 0) if(_mpi_rank == 0)
......
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