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