From 1be4706366f77b4da7e5114e4e334e9aa7dd3b62 Mon Sep 17 00:00:00 2001 From: zjing14 Date: Mon, 22 Jan 2024 10:42:26 -0600 Subject: [PATCH] fixed return (#1138) --- profiler/include/profiler/profile_gemm_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/include/profiler/profile_gemm_impl.hpp b/profiler/include/profiler/profile_gemm_impl.hpp index 586a356ecc..0419ccd8e7 100644 --- a/profiler/include/profiler/profile_gemm_impl.hpp +++ b/profiler/include/profiler/profile_gemm_impl.hpp @@ -298,7 +298,7 @@ int profile_gemm_impl(int do_verification, } } - return pass ? 0 : 1; + return pass; } } // namespace profiler