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/ClGemmLowpOutputStage.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/gpu/cl/operators/ClGemmLowpOutputStage.cpp') diff --git a/src/gpu/cl/operators/ClGemmLowpOutputStage.cpp b/src/gpu/cl/operators/ClGemmLowpOutputStage.cpp index 27fb89217c..a61b11a3b1 100644 --- a/src/gpu/cl/operators/ClGemmLowpOutputStage.cpp +++ b/src/gpu/cl/operators/ClGemmLowpOutputStage.cpp @@ -31,6 +31,8 @@ #include "src/gpu/cl/kernels/ClGemmLowpQuantizeDownInt32ScaleByFloatKernel.h" #include "src/gpu/cl/kernels/ClGemmLowpQuantizeDownInt32ScaleKernel.h" +#include "src/common/utils/Log.h" + namespace arm_compute { namespace opencl @@ -38,6 +40,7 @@ namespace opencl void ClGemmLowpOutputStage::configure(const CLCompileContext &compile_context, const ITensorInfo *src, const ITensorInfo *bias, ITensorInfo *dst, const GEMMLowpOutputStageInfo &info) { ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst); + ARM_COMPUTE_LOG_PARAMS(src, bias, dst, info); switch(info.type) { -- cgit v1.2.1