aboutsummaryrefslogtreecommitdiff
path: root/src/gpu/cl/operators/ClActivation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/cl/operators/ClActivation.cpp')
-rw-r--r--src/gpu/cl/operators/ClActivation.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gpu/cl/operators/ClActivation.cpp b/src/gpu/cl/operators/ClActivation.cpp
index 6b36cc34b4..74a818d738 100644
--- a/src/gpu/cl/operators/ClActivation.cpp
+++ b/src/gpu/cl/operators/ClActivation.cpp
@@ -28,6 +28,7 @@
#include "src/common/IOperator.h"
#include "src/common/utils/LegacySupport.h"
+#include "src/common/utils/Log.h"
#include "src/gpu/cl/ClContext.h"
namespace arm_compute
@@ -36,6 +37,7 @@ namespace opencl
{
void ClActivation::configure(const ClCompileContext &compile_context, ITensorInfo *src, ITensorInfo *dst, const ActivationLayerInfo &act_info)
{
+ ARM_COMPUTE_LOG_PARAMS(src, dst, act_info);
auto k = std::make_unique<kernels::ClActivationKernel>();
k->configure(compile_context, src, dst, act_info);
_kernel = std::move(k);