Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Commits
b7d2952d
There was an error fetching the commit references. Please try again later.
Commit
b7d2952d
authored
6 years ago
by
Lukas Cejka
Committed by
Tomáš Oberhuber
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
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
!45
Matrices revision
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Benchmarks/SpMV/tnl-benchmark-spmv.h
+15
-1
15 additions, 1 deletion
src/Benchmarks/SpMV/tnl-benchmark-spmv.h
with
15 additions
and
1 deletion
src/Benchmarks/SpMV/tnl-benchmark-spmv.h
+
15
−
1
View file @
b7d2952d
...
...
@@ -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"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment