From ef629bcd02f604e89703a82b33a301541575657e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Pietil=C3=A4?= <> Date: Mon, 15 Dec 2025 07:46:27 -0500 Subject: [PATCH] Fix profiling output. --- profiler/include/profiler/profile_grouped_conv_fwd_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/include/profiler/profile_grouped_conv_fwd_impl.hpp b/profiler/include/profiler/profile_grouped_conv_fwd_impl.hpp index da7daf9997..3539f877cc 100644 --- a/profiler/include/profiler/profile_grouped_conv_fwd_impl.hpp +++ b/profiler/include/profiler/profile_grouped_conv_fwd_impl.hpp @@ -272,7 +272,7 @@ bool profile_grouped_conv_fwd_impl(int do_verification, { std::stringstream out_ss; out_ss << "name: " << best_op_name << std::endl - << "avg_time: " << best_avg_time << std::endl; + << "avg_time: " << best_avg_time << std::endl << "flops: " << best_tflops << std::endl; out << out_ss.str(); out.close();