aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/operators/CpuAdd.cpp
diff options
context:
space:
mode:
authorRamy Elgammal <ramelg01@e127066.cambridge.arm.com>2021-08-19 22:10:30 +0100
committerramy.elgammal <ramy.elgammal@arm.com>2021-09-01 14:16:20 +0000
commite920d6a62b8d96e08950e81bba769e8674d4921b (patch)
treeda8308b76a424f18c9b6a66ac39e446b21f64a0d /src/cpu/operators/CpuAdd.cpp
parentb1db6e16b7041af2212884ed8c6b3300a2a6a976 (diff)
downloadComputeLibrary-e920d6a62b8d96e08950e81bba769e8674d4921b.tar.gz
Printing operators parameters, currently for CpuAdd operator only.
Resolves: COMPMID-4718 Change-Id: Id4dd762cd1b759bb814b9d0b1ea0c9ba4dfbae6f Signed-off-by: Ramy Elgammal <ramy.elgammal@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6139 Reviewed-by: Giorgio Arena <giorgio.arena@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/cpu/operators/CpuAdd.cpp')
-rw-r--r--src/cpu/operators/CpuAdd.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cpu/operators/CpuAdd.cpp b/src/cpu/operators/CpuAdd.cpp
index 42a7b99ceb..755b1994ae 100644
--- a/src/cpu/operators/CpuAdd.cpp
+++ b/src/cpu/operators/CpuAdd.cpp
@@ -25,12 +25,15 @@
#include "src/cpu/kernels/CpuAddKernel.h"
+#include "src/common/utils/Log.h"
+
namespace arm_compute
{
namespace cpu
{
void CpuAdd::configure(const ITensorInfo *src0, const ITensorInfo *src1, ITensorInfo *dst, ConvertPolicy policy, const ActivationLayerInfo &act_info)
{
+ ARM_COMPUTE_LOG_PARAMS(src0, src1, policy, act_info);
ARM_COMPUTE_UNUSED(act_info);
auto k = std::make_unique<kernels::CpuAddKernel>();
k->configure(src0, src1, dst, policy);