aboutsummaryrefslogtreecommitdiff
path: root/src/gpu/cl/operators/ClPRelu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/cl/operators/ClPRelu.cpp')
-rw-r--r--src/gpu/cl/operators/ClPRelu.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gpu/cl/operators/ClPRelu.cpp b/src/gpu/cl/operators/ClPRelu.cpp
index 05717d5bb7..cf4ebe6083 100644
--- a/src/gpu/cl/operators/ClPRelu.cpp
+++ b/src/gpu/cl/operators/ClPRelu.cpp
@@ -22,8 +22,11 @@
* SOFTWARE.
*/
#include "src/gpu/cl/operators/ClPRelu.h"
+
#include "src/gpu/cl/kernels/ClElementwiseKernel.h"
+#include "src/common/utils/Log.h"
+
namespace arm_compute
{
namespace opencl
@@ -31,6 +34,7 @@ namespace opencl
using KernelType = kernels::ClArithmeticKernel;
void ClPRelu::configure(const CLCompileContext &compile_context, ITensorInfo *input, ITensorInfo *alpha, ITensorInfo *output)
{
+ ARM_COMPUTE_LOG_PARAMS(input, alpha, output);
auto k = std::make_unique<KernelType>();
k->configure(compile_context, ArithmeticOperation::PRELU, input, alpha, (output == nullptr ? input : output));
_kernel = std::move(k);