diff --git a/benchmarks/noodle.cpp b/benchmarks/noodle.cpp index d12e25f1..db1b6b9f 100644 --- a/benchmarks/noodle.cpp +++ b/benchmarks/noodle.cpp @@ -58,7 +58,7 @@ void noodle_benchmarks(int size, int loops, const char *lit_str, int lit_len, ch /*calculate maximum bandwidth*/ max_bw = transferred_size / total_sec; /*convert to MB/s*/ - max_bw /=1048576.0; + max_bw /= 1048576.0; /*calculate average bandwidth*/ bandwitdh = max_bw / loops; printf(KMAG "Case with %u matches in random pos with %u * %u iterations," KBLU " total elapsed time =" RST " %.3f s, " diff --git a/benchmarks/shufti.cpp b/benchmarks/shufti.cpp index 85a45e21..d170bfcf 100644 --- a/benchmarks/shufti.cpp +++ b/benchmarks/shufti.cpp @@ -68,7 +68,7 @@ void shufti_benchmarks(int size, int loops, int M, bool has_match) { /*calculate maximum bandwidth*/ max_bw = transferred_size / total_sec; /*convert to MB/s*/ - max_bw /=1048576.0; + max_bw /= 1048576.0; /*calculate average bandwidth*/ bandwitdh = max_bw / loops; printf(KMAG "ShuftiExec: case without matches, %u * %u iterations," KBLU " total elapsed time =" RST " %.3f s, " @@ -139,7 +139,7 @@ void rshufti_benchmarks(int size, int loops, int M, bool has_match) { /*calculate maximum bandwidth*/ max_bw = transferred_size / total_sec; /*convert to MB/s*/ - max_bw /=1048576.0; + max_bw /= 1048576.0; /*calculate average bandwidth*/ bandwitdh = max_bw / loops; printf(KMAG "rShuftiExec: case without matches, %u * %u iterations," KBLU " total elapsed time =" RST " %.3f s, " diff --git a/benchmarks/truffle.cpp b/benchmarks/truffle.cpp index f3f08acf..077cadba 100644 --- a/benchmarks/truffle.cpp +++ b/benchmarks/truffle.cpp @@ -67,7 +67,7 @@ void truffle_benchmarks(int size, int loops, int M, bool has_match) { /*calculate maximum bandwidth*/ max_bw = transferred_size / total_sec; /*convert to MB/s*/ - max_bw /=1048576.0; + max_bw /= 1048576.0; /*calculate average bandwidth*/ bandwitdh = max_bw / loops; printf(KMAG "TruffleExec case without matches, %u * %u iterations," KBLU " total elapsed time =" RST " %.3f s, " @@ -139,7 +139,7 @@ void rtruffle_benchmarks(int size, int loops, int M, bool has_match) { /*calculate maximum bandwidth*/ max_bw = transferred_size / total_sec; /*convert to MB/s*/ - max_bw /=1048576.0; + max_bw /= 1048576.0; /*calculate average bandwidth*/ bandwitdh = max_bw / loops; printf(KMAG "rTruffleExec case without matches, %u * %u iterations," KBLU " total elapsed time =" RST " %.3f s, "