aboutsummaryrefslogtreecommitdiff
path: root/src/gpu/cl/operators/ClCrop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/cl/operators/ClCrop.cpp')
-rw-r--r--src/gpu/cl/operators/ClCrop.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gpu/cl/operators/ClCrop.cpp b/src/gpu/cl/operators/ClCrop.cpp
index a6a1c8b103..cef9f14c7d 100644
--- a/src/gpu/cl/operators/ClCrop.cpp
+++ b/src/gpu/cl/operators/ClCrop.cpp
@@ -26,6 +26,8 @@
#include "src/gpu/cl/ClCompileContext.h"
#include "src/gpu/cl/kernels/ClCropKernel.h"
+#include "src/common/utils/Log.h"
+
namespace arm_compute
{
namespace opencl
@@ -33,6 +35,7 @@ namespace opencl
void ClCrop::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst, Coordinates2D start, Coordinates2D end, uint32_t batch_index, float extrapolation_value,
Window *dst_window)
{
+ ARM_COMPUTE_LOG_PARAMS(src, dst, start, end, batch_index, extrapolation_value, dst_window);
auto k = std::make_unique<kernels::ClCropKernel>();
k->configure(compile_context, src, dst, start, end, batch_index, extrapolation_value, dst_window);
_kernel = std::move(k);