From c90586e0dfb5d3fc490b85edb64e04df7baaf562 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Pietil=C3=A4?= <> Date: Fri, 11 Jul 2025 10:51:21 +0000 Subject: [PATCH] Fix error handling in the conv profiler. --- .../include/profiler/profile_grouped_conv_bwd_weight_impl.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/profiler/include/profiler/profile_grouped_conv_bwd_weight_impl.hpp b/profiler/include/profiler/profile_grouped_conv_bwd_weight_impl.hpp index 53f45f18e1..6ce93d4932 100644 --- a/profiler/include/profiler/profile_grouped_conv_bwd_weight_impl.hpp +++ b/profiler/include/profiler/profile_grouped_conv_bwd_weight_impl.hpp @@ -183,6 +183,7 @@ bool profile_grouped_conv_bwd_weight_impl(int do_verification, catch(const std::exception& e) { std::cerr << e.what() << '\n'; + exit(EXIT_FAILURE); } }