diff options
author | Tim Besard <tim.besard@gmail.com> | 2011-11-28 17:02:57 +0100 |
---|---|---|
committer | Tim Besard <tim.besard@gmail.com> | 2011-11-28 17:02:57 +0100 |
commit | 9177ded4c99840b02ea9e45ae90c287492785711 (patch) | |
tree | 42e7f485fa69c828e5275a930e0d471a3b9ab9e9 /src/main.cpp | |
parent | 3f20310855342804fe4299c1ae4a845aefd62798 (diff) |
Improving CSV output.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 9684f58..4200b3b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -83,9 +83,9 @@ int main(int argc, char* argv[]) { } int64 ops = Run::ops_per_chain(); - double secs = Run::seconds(); + std::vector<double> seconds = Run::seconds(); - Output::print(e, ops, secs, clk_res); + Output::print(e, ops, seconds, clk_res); return 0; } |