aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/operators/CpuDequantize.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/operators/CpuDequantize.cpp')
-rw-r--r--src/cpu/operators/CpuDequantize.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cpu/operators/CpuDequantize.cpp b/src/cpu/operators/CpuDequantize.cpp
index 7c03571f40..12dc136ba3 100644
--- a/src/cpu/operators/CpuDequantize.cpp
+++ b/src/cpu/operators/CpuDequantize.cpp
@@ -26,6 +26,7 @@
#include "arm_compute/core/TensorInfo.h"
#include "arm_compute/core/Validate.h"
#include "arm_compute/runtime/NEON/NEScheduler.h"
+#include "src/common/utils/Log.h"
#include "src/cpu/kernels/CpuDequantizeKernel.h"
namespace arm_compute
@@ -34,6 +35,7 @@ namespace cpu
{
void CpuDequantize::configure(const ITensorInfo *src, ITensorInfo *dst)
{
+ ARM_COMPUTE_LOG_PARAMS(src, dst);
auto k = std::make_unique<kernels::CpuDequantizeKernel>();
k->configure(src, dst);
_kernel = std::move(k);