diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2023-06-02 15:28:54 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2023-06-02 15:28:54 +0200 |
commit | ff9304370fdd94e9b7e4c4262c59ac734f1a28fd (patch) | |
tree | ca8e1edf1fd99d9295686f151de2bb96d7116588 /SCAN-RSS/baselines/cpu/app_baseline.cpp | |
parent | 5a3652ed60704d2b45eb652639f9d712ea32e104 (diff) |
SCAN-RSS: update dfatool port and add/update benchmark scripts
Diffstat (limited to 'SCAN-RSS/baselines/cpu/app_baseline.cpp')
-rw-r--r-- | SCAN-RSS/baselines/cpu/app_baseline.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/SCAN-RSS/baselines/cpu/app_baseline.cpp b/SCAN-RSS/baselines/cpu/app_baseline.cpp index ba9b31f..66eced5 100644 --- a/SCAN-RSS/baselines/cpu/app_baseline.cpp +++ b/SCAN-RSS/baselines/cpu/app_baseline.cpp @@ -189,18 +189,14 @@ int main(int argc, char **argv) { printf("[" ANSI_COLOR_GREEN "OK" ANSI_COLOR_RESET "] Outputs are equal\n"); if(rep >= p.n_warmup) { - printf("[::] n_threads=%d e_type=%s n_elements=%d " - "| throughput_cpu_ref_MBps=%f throughput_cpu_thrust_MBps=%f\n", + printf("[::] SCAN-RSS CPU | n_threads=%d e_type=%s n_elements=%d " + "| throughput_cpu_ref_MBps=%f throughput_cpu_thrust_MBps=%f", nr_threads, XSTR(T), input_size, input_size * sizeof(T) / timer.time[0], input_size * sizeof(T) / timer.time[1]); - printf("[::] n_threads=%d e_type=%s n_elements=%d " - "| throughput_cpu_ref_MOpps=%f throughput_cpu_thrust_MOpps=%f\n", - nr_threads, XSTR(T), input_size, + printf(" throughput_cpu_ref_MOpps=%f throughput_cpu_thrust_MOpps=%f", input_size / timer.time[0], input_size / timer.time[1]); - printf("[::] n_threads=%d e_type=%s n_elements=%d | ", - nr_threads, XSTR(T), input_size); printall(&timer, 1); } } else { |