aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels/NEGatherKernel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/NEON/kernels/NEGatherKernel.h')
-rw-r--r--src/core/NEON/kernels/NEGatherKernel.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/core/NEON/kernels/NEGatherKernel.h b/src/core/NEON/kernels/NEGatherKernel.h
index 0711f8190b..fc0e67854b 100644
--- a/src/core/NEON/kernels/NEGatherKernel.h
+++ b/src/core/NEON/kernels/NEGatherKernel.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2021 Arm Limited.
+ * Copyright (c) 2019-2022 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -85,18 +85,23 @@ private:
*
* For gather on the 0 axis an element by element copy is performed.
*
- * @param[in] window Region on which to execute the kernel. (Must be a region of the window returned by window())
- * @param[in] info Info about executing thread and CPU.
+ * @param[in] window Region on which to run the kernel. (Must be a region of the window returned by window())
+ * @param[in] info Info about running thread and CPU.
*/
template <typename U>
void gather_0_axis(const Window &window, const ThreadInfo &info);
+ template <typename U>
+ void gather_dims_0_axis(const Window &window, const ThreadInfo &info);
+
+ template <typename U>
+ void gather_dims_n_axis(const Window &window, const ThreadInfo &info);
/** Implementation of the gather operation.
*
* For 1<=axis a row-wise copy is taking place.
*
- * @param[in] window Region on which to execute the kernel. (Must be a region of the window returned by window())
- * @param[in] info Info about executing thread and CPU.
+ * @param[in] window Region on which to run the kernel. (Must be a region of the window returned by window())
+ * @param[in] info Info about running thread and CPU.
*/
template <typename U>
void gather_n_axis(const Window &window, const ThreadInfo &info);