From 2e53f17f4f3c9179455c05d49a47a236067e00c0 Mon Sep 17 00:00:00 2001 From: ramelg01 Date: Wed, 22 Sep 2021 10:48:25 +0100 Subject: Provide logging for configure functions in all gpu operators Partially Resolves: COMPMID-4718 Signed-off-by: Ramy Elgammal Change-Id: I3d80e732fc957114ec84ef8350dbf12eeae23054 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6301 Tested-by: Arm Jenkins Reviewed-by: Freddie Liardet Reviewed-by: Jakub Jan Sujak Reviewed-by: Giorgio Arena Comments-Addressed: Arm Jenkins --- src/gpu/cl/operators/ClGemmLowpMatrixMultiplyCore.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/gpu/cl/operators/ClGemmLowpMatrixMultiplyCore.cpp') diff --git a/src/gpu/cl/operators/ClGemmLowpMatrixMultiplyCore.cpp b/src/gpu/cl/operators/ClGemmLowpMatrixMultiplyCore.cpp index f3c0ee1c8f..6fd7e52d5d 100644 --- a/src/gpu/cl/operators/ClGemmLowpMatrixMultiplyCore.cpp +++ b/src/gpu/cl/operators/ClGemmLowpMatrixMultiplyCore.cpp @@ -47,6 +47,7 @@ #include "src/gpu/cl/utils/ClAuxTensorHandler.h" #include "src/runtime/CL/gemm_auto_heuristics/CLGEMMAutoHeuristics.h" +#include "src/common/utils/Log.h" #include "utils/TypePrinter.h" namespace arm_compute @@ -218,6 +219,7 @@ void ClGemmLowpMatrixMultiplyCore::configure(const CLCompileContext &compile_con { ARM_COMPUTE_ERROR_ON_NULLPTR(a, b, output); ARM_COMPUTE_ERROR_THROW_ON(ClGemmLowpMatrixMultiplyCore::validate(a, b, c != nullptr ? c : nullptr, output, gemm_info)); + ARM_COMPUTE_LOG_PARAMS(a, b, c, output, gemm_info); _reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run(); _a_offset = a->quantization_info().uniform().offset; -- cgit v1.2.1