aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/operators/CpuFill.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/operators/CpuFill.cpp')
-rw-r--r--src/cpu/operators/CpuFill.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cpu/operators/CpuFill.cpp b/src/cpu/operators/CpuFill.cpp
index c0b48f5830..3d8f62fe07 100644
--- a/src/cpu/operators/CpuFill.cpp
+++ b/src/cpu/operators/CpuFill.cpp
@@ -25,12 +25,15 @@
#include "src/cpu/kernels/CpuFillKernel.h"
+#include "src/common/utils/Log.h"
+
namespace arm_compute
{
namespace cpu
{
void CpuFill::configure(const ITensorInfo *tensor, PixelValue constant_value)
{
+ ARM_COMPUTE_LOG_PARAMS(tensor, constant_value);
auto k = std::make_unique<kernels::CpuFillKernel>();
k->configure(tensor, constant_value);
_kernel = std::move(k);