From 3ae3d88c1a305ef4fc0beed8fda3cfc39ddb2ae8 Mon Sep 17 00:00:00 2001 From: ramelg01 Date: Sun, 12 Sep 2021 23:07:47 +0100 Subject: Provide logging for configure functions in all cpu operators Partially Resolves: COMPMID-4718 Signed-off-by: Ramy Elgammal Change-Id: I02eabdd6bce8cd561ab2fdfd644a686a3762b817 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6253 Reviewed-by: Giorgio Arena Reviewed-by: Georgios Pinitas Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins --- src/cpu/operators/CpuFloor.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/cpu/operators/CpuFloor.cpp') diff --git a/src/cpu/operators/CpuFloor.cpp b/src/cpu/operators/CpuFloor.cpp index 55f645847f..868add7d29 100644 --- a/src/cpu/operators/CpuFloor.cpp +++ b/src/cpu/operators/CpuFloor.cpp @@ -25,12 +25,15 @@ #include "src/cpu/kernels/CpuFloorKernel.h" +#include "src/common/utils/Log.h" + namespace arm_compute { namespace cpu { void CpuFloor::configure(const ITensorInfo *src, ITensorInfo *dst) { + ARM_COMPUTE_LOG_PARAMS(src, dst); auto k = std::make_unique(); k->configure(src, dst); _kernel = std::move(k); -- cgit v1.2.1