aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/NEON/functions/NEGather.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/NEON/functions/NEGather.cpp')
-rw-r--r--src/runtime/NEON/functions/NEGather.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/runtime/NEON/functions/NEGather.cpp b/src/runtime/NEON/functions/NEGather.cpp
index 86cbfd187a..f5d19c769e 100644
--- a/src/runtime/NEON/functions/NEGather.cpp
+++ b/src/runtime/NEON/functions/NEGather.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020 Arm Limited.
+ * Copyright (c) 2019-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -25,12 +25,15 @@
#include "src/core/NEON/kernels/NEGatherKernel.h"
+#include "src/common/utils/Log.h"
+
#include <utility>
namespace arm_compute
{
void NEGather::configure(const ITensor *input, const ITensor *indices, ITensor *output, int axis)
{
+ ARM_COMPUTE_LOG_PARAMS(input, indices, output, axis);
auto k = std::make_unique<NEGatherKernel>();
k->configure(input, indices, output, axis);
_kernel = std::move(k);