aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLLogicalOr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLLogicalOr.cpp')
-rw-r--r--src/runtime/CL/functions/CLLogicalOr.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/runtime/CL/functions/CLLogicalOr.cpp b/src/runtime/CL/functions/CLLogicalOr.cpp
index 63524213f7..f9a606e8a5 100644
--- a/src/runtime/CL/functions/CLLogicalOr.cpp
+++ b/src/runtime/CL/functions/CLLogicalOr.cpp
@@ -25,6 +25,8 @@
#include "arm_compute/core/CL/ICLTensor.h"
#include "src/gpu/cl/kernels/ClElementwiseKernel.h"
+#include "src/common/utils/Log.h"
+
#include <utility>
namespace arm_compute
@@ -33,6 +35,7 @@ namespace experimental
{
void CLLogicalOr::configure(const CLCompileContext &compile_context, ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output)
{
+ ARM_COMPUTE_LOG_PARAMS(input1, input2, output);
auto k = std::make_unique<arm_compute::opencl::kernels::ClLogicalBinaryKernel>();
k->configure(compile_context, LogicalOperation::Or, input1, input2, output);
_kernel = std::move(k);