From 0f6d244960340ce27805e7b3865b21e7b4284f70 Mon Sep 17 00:00:00 2001 From: James Newling Date: Fri, 14 Jun 2024 16:17:53 -0700 Subject: [PATCH] pretty printing --- build_tools/ci/matmul_ukernel_vs_codegen_benchmark/test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_tools/ci/matmul_ukernel_vs_codegen_benchmark/test.cpp b/build_tools/ci/matmul_ukernel_vs_codegen_benchmark/test.cpp index 6dccdb72d..329d0f841 100755 --- a/build_tools/ci/matmul_ukernel_vs_codegen_benchmark/test.cpp +++ b/build_tools/ci/matmul_ukernel_vs_codegen_benchmark/test.cpp @@ -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 << " ";