aboutsummaryrefslogtreecommitdiff
path: root/src/gpu/cl/operators/ClScale.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/cl/operators/ClScale.cpp')
-rw-r--r--src/gpu/cl/operators/ClScale.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gpu/cl/operators/ClScale.cpp b/src/gpu/cl/operators/ClScale.cpp
index 6dab66786a..0798b19ca0 100644
--- a/src/gpu/cl/operators/ClScale.cpp
+++ b/src/gpu/cl/operators/ClScale.cpp
@@ -29,6 +29,8 @@
#include "src/gpu/cl/ClCompileContext.h"
#include "src/gpu/cl/kernels/ClScaleKernel.h"
+#include "src/common/utils/Log.h"
+
namespace arm_compute
{
namespace opencl
@@ -36,6 +38,8 @@ namespace opencl
void ClScale::configure(const CLCompileContext &compile_context, ITensorInfo *src, ITensorInfo *dst, const ScaleKernelInfo &info)
{
ARM_COMPUTE_ERROR_ON_NULLPTR(src);
+ ARM_COMPUTE_LOG_PARAMS(src, dst, info);
+
// Configure Scale kernel
auto k = std::make_unique<kernels::ClScaleKernel>();
k->set_target(CLScheduler::get().target());