Skip to content

Commit

Permalink
pretty printing
Browse files Browse the repository at this point in the history
  • Loading branch information
newling committed Jun 14, 2024
1 parent 7c67e9b commit 0f6d244
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ int main(int argc, const char *argv[]) {
summary << "m: " << M << "\n";
summary << "k: " << K << "\n";
summary << "n: " << N << "\n";
summary << "number of operations (2*M*N*K): " << nOps << "\n";
summary << "number of operations (2mnk): " << nOps << "\n";
summary << "execution times for all " << nIters << " runs [s]: \n ";
for (auto t : allTimes) {
summary << t << " ";
Expand Down

0 comments on commit 0f6d244

Please sign in to comment.