Minor fixed for performane logging

This commit is contained in:
Oliver Ruebel 2020-10-28 22:10:00 -07:00 committed by Gunther H. Weber
parent ac1818d357
commit 17f2f845e7
3 changed files with 3 additions and 2 deletions

@ -341,6 +341,7 @@ int main(int argc, char* argv[])
<< " device=" << device.GetName() << std::endl
<< " mc=" << useMarchingCubes << std::endl
<< " saveDot=" << saveDotFiles << std::endl
<< " forwardSummary=" << forwardSummary << std::endl
#ifdef ENABLE_SET_NUM_THREADS
<< " numThreads=" << numThreads << std::endl
#endif

@ -903,7 +903,7 @@ VTKM_CONT void ContourTreeUniformDistributed::DoPostExecute(
timingsStream << " " << std::setw(38) << std::left << "Fan Out Foreach"
<< ": " << timer.GetElapsedTime() << " seconds" << std::endl;
VTKM_LOG_S(this->TimingsLogLevel, timingsStream.str());
VTKM_LOG_S(this->TimingsLogLevel, std::endl << timingsStream.str());
result = vtkm::cont::PartitionedDataSet(hierarchicalTreeOutputDataSet);
}

@ -316,7 +316,7 @@ private:
MergeTree splitTree(mesh.NumVertices, false);
ActiveGraph splitGraph(false);
splitGraph.Initialise(mesh, extrema);
timingsStream << " " << std::setw(38) << std::left << "Splot Tree Initialize Active Graph"
timingsStream << " " << std::setw(38) << std::left << "Split Tree Initialize Active Graph"
<< ": " << timer.GetElapsedTime() << " seconds" << std::endl;
#ifdef DEBUG_PRINT
splitGraph.DebugPrint("Active Graph Instantiated", __FILE__, __LINE__);