aboutsummaryrefslogtreecommitdiff
path: root/src/gpu/cl/operators/ClFill.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/cl/operators/ClFill.cpp')
-rw-r--r--src/gpu/cl/operators/ClFill.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gpu/cl/operators/ClFill.cpp b/src/gpu/cl/operators/ClFill.cpp
index 9e006c1649..ad22b15cff 100644
--- a/src/gpu/cl/operators/ClFill.cpp
+++ b/src/gpu/cl/operators/ClFill.cpp
@@ -26,12 +26,15 @@
#include "src/gpu/cl/ClCompileContext.h"
#include "src/gpu/cl/kernels/ClFillKernel.h"
+#include "src/common/utils/Log.h"
+
namespace arm_compute
{
namespace opencl
{
void ClFill::configure(const ClCompileContext &compile_context, ITensorInfo *tensor, const PixelValue &constant_value, Window *dst_window)
{
+ ARM_COMPUTE_LOG_PARAMS(tensor, constant_value, dst_window);
auto k = std::make_unique<kernels::ClFillKernel>();
k->configure(compile_context, tensor, constant_value, dst_window);
_kernel = std::move(k);