Skip to content
Snippets Groups Projects
Commit 18b15bcf authored by Sebastian Eibl's avatar Sebastian Eibl
Browse files

[ADD] timer output to sql

parent 9f112210
No related merge requests found
...@@ -366,6 +366,11 @@ int main( int argc, char ** argv ) ...@@ -366,6 +366,11 @@ int main( int argc, char ** argv )
integerProperties["RPReceives"] = RPReceives; integerProperties["RPReceives"] = RPReceives;
realProperties["linkedCellsVolume"] = linkedCellsVolume; realProperties["linkedCellsVolume"] = linkedCellsVolume;
integerProperties["numLinkedCells"] = int64_c(numLinkedCells); integerProperties["numLinkedCells"] = int64_c(numLinkedCells);
realProperties["PUpS"] = double_c(PUpS);
realProperties["timer_min"] = timer_reduced->min();
realProperties["timer_max"] = timer_reduced->max();
realProperties["timer_average"] = timer_reduced->average();
realProperties["timer_total"] = timer_reduced->total();
addBuildInfoToSQL( integerProperties, realProperties, stringProperties ); addBuildInfoToSQL( integerProperties, realProperties, stringProperties );
saveToSQL(params, integerProperties, realProperties, stringProperties ); saveToSQL(params, integerProperties, realProperties, stringProperties );
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment