From cad76827b0ad1428f5b620a5d29db4045a7b2cc5 Mon Sep 17 00:00:00 2001 From: Michael Marshall <43034299+mmphys@users.noreply.github.com> Date: Fri, 2 Aug 2019 15:47:20 +0100 Subject: [PATCH] Be consistent about separator usage. Log start / stop / duration --- Hadrons/Utilities/Contractor.cc | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/Hadrons/Utilities/Contractor.cc b/Hadrons/Utilities/Contractor.cc index 0ce5ecdb..b2002a73 100644 --- a/Hadrons/Utilities/Contractor.cc +++ b/Hadrons/Utilities/Contractor.cc @@ -26,6 +26,8 @@ See the full license in the file "LICENSE" in the top level distribution directo *************************************************************************************/ /* END LEGAL */ +#include +#include #include #include #include @@ -73,12 +75,12 @@ void saveCorrelator(const Contractor::CorrelatorResult &result, const std::strin for (unsigned int i = 0; i < terms.size() - 1; i++) { - fileStem += terms[i] + "_" + std::to_string(result.times[i]) + Separator; + fileStem += terms[i] + Separator + std::to_string(result.times[i]) + Separator; } fileStem += terms.back(); if (!result.contraction.translationAverage) { - fileStem += Separator + "dt_" + std::to_string(dt); + fileStem += Separator + "dt" + Separator + std::to_string(dt); } filename = dir + "/" + RESULT_FILE_NAME(fileStem, traj); std::cout << "Saving correlator to '" << filename << "'" << std::endl; @@ -235,6 +237,11 @@ int main(int argc, char* argv[]) return EXIT_FAILURE; } + // Log what file we're processing and when we started + const std::chrono::system_clock::time_point start{ std::chrono::system_clock::now() }; + std::time_t now = std::chrono::system_clock::to_time_t( start ); + std::cout << "Start " << parFilename << " " << std::ctime( &now ) << std::endl; + // parse parameter file Contractor::ContractorPar par; unsigned int nMat, nCont; @@ -436,6 +443,13 @@ int main(int argc, char* argv[]) printTimeProfile(tAr.getTimings(), tAr.getTimer("Total")); } } - + + // Mention that we're finished, what the time is and how long it took + const std::chrono::system_clock::time_point stop{ std::chrono::system_clock::now() }; + now = std::chrono::system_clock::to_time_t( stop ); + const std::chrono::duration duration_seconds = stop - start; + const double hours{ ( duration_seconds.count() + 0.5 ) / 3600 }; + std::cout << "Stop " << parFilename << " " << std::ctime( &now ) + << "Total duration " << std::fixed << std::setprecision(1) << hours << " hours." << std::endl; return EXIT_SUCCESS; }