Skip to content
Snippets Groups Projects
Commit b7d2952d authored by Lukas Cejka's avatar Lukas Cejka Committed by Tomáš Oberhuber
Browse files

Added log file naming based on current date and time, so that log files don't get overwritten.

parent 53c19fc0
No related branches found
No related tags found
1 merge request!45Matrices revision
......@@ -24,6 +24,8 @@
#include <TNL/Matrices/MatrixReader.h>
using namespace TNL::Matrices;
#include <ctime> // Used for file naming, so logs don't get overwritten.
using namespace TNL;
using namespace TNL::Benchmarks;
......@@ -47,7 +49,19 @@ setupConfig( Config::ConfigDescription & config )
{
config.addDelimiter( "Benchmark settings:" );
config.addRequiredEntry< String >( "input-file", "Input file name." );
config.addEntry< String >( "log-file", "Log file name.", "tnl-benchmark-spmv.log");
////////////////
//https://stackoverflow.com/questions/16357999/current-date-and-time-as-string
time_t rawtime;
struct tm * timeinfo;
char buffer[80];
time (&rawtime);
timeinfo = localtime(&rawtime);
strftime(buffer,sizeof(buffer),"%d-%m-%Y--%H:%M:%S",timeinfo);
std::string str(buffer);
////////////////
config.addEntry< String >( "log-file", "Log file name.", "tnl-benchmark-spmv::" + str + ".log");
config.addEntry< String >( "output-mode", "Mode for opening the log file.", "overwrite" );
config.addEntryEnum( "append" );
config.addEntryEnum( "overwrite" );
......
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