diff options
author | Tim Besard <tim.besard@gmail.com> | 2011-11-19 15:36:56 +0100 |
---|---|---|
committer | Tim Besard <tim.besard@gmail.com> | 2011-11-19 15:36:56 +0100 |
commit | 9a2eef3b9deabcd3c368cb9562485fe2dff05ec1 (patch) | |
tree | ae856e2d9270dc4de7861407911b3bc1be4896c1 /src/output.cpp | |
parent | efc33cc52e5004d4f188fa1cbaae6a07861082de (diff) |
Option renaming.
Diffstat (limited to 'src/output.cpp')
-rw-r--r-- | src/output.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/output.cpp b/src/output.cpp index 0fcc74d..0362cc1 100644 --- a/src/output.cpp +++ b/src/output.cpp @@ -49,6 +49,7 @@ void Output::header(Experiment &e, int64 ops, double secs, double ck_res) { printf("chains per thread,"); printf("number of threads,"); printf("iterations,"); + printf("loop length,"); printf("experiments,"); printf("access pattern,"); printf("stride,"); @@ -77,6 +78,7 @@ void Output::csv(Experiment &e, int64 ops, double secs, double ck_res) { printf("%lld,", e.chains_per_thread); printf("%ld,", e.num_threads); printf("%ld,", e.iterations); + printf("%ld,", e.loop_length); printf("%ld,", e.experiments); printf("%s,", e.access()); printf("%ld,", e.stride); @@ -118,6 +120,7 @@ void Output::table(Experiment &e, int64 ops, double secs, double ck_res) { printf("chains per thread = %ld\n", e.chains_per_thread); printf("number of threads = %ld\n", e.num_threads); printf("iterations = %ld\n", e.iterations); + printf("loop length = %ld\n", e.loop_length); printf("experiments = %ld\n", e.experiments); printf("access pattern = %s\n", e.access()); printf("stride = %ld\n", e.stride); |