aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels/NEGatherKernel.h
diff options
context:
space:
mode:
authorMohammed Suhail Munshi <MohammedSuhail.Munshi@arm.com>2022-05-12 11:00:36 +0100
committerMohmun02 <MohammedSuhail.Munshi@arm.com>2022-05-12 13:25:03 +0000
commitdc4f276b810c4746c684a81ffeeb22aa0bff2adc (patch)
treea4e6f63749cf88cee8078b8518831c260cc3a805 /src/core/NEON/kernels/NEGatherKernel.h
parent4e9f568f1055db8d5b6a969550787032b91854a5 (diff)
downloadComputeLibrary-dc4f276b810c4746c684a81ffeeb22aa0bff2adc.tar.gz
Revert "Add support for 2d and 3d indices for axis 0"
This reverts commit 0db8b8bbd941b3dab4238c03e734e7ac43c662ed. Relates to [COMPMID-5055] Signed-off-by: Mohammed Suhail Munshi <MohammedSuhail.Munshi@arm.com> Change-Id: I143e7965e21b956abb05ba5c41e12c5b73b7345a Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7558 Reviewed-by: Pablo Marquez Tello <pablo.tello@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/core/NEON/kernels/NEGatherKernel.h')
-rw-r--r--src/core/NEON/kernels/NEGatherKernel.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/core/NEON/kernels/NEGatherKernel.h b/src/core/NEON/kernels/NEGatherKernel.h
index fc0e67854b..6f00ddbe45 100644
--- a/src/core/NEON/kernels/NEGatherKernel.h
+++ b/src/core/NEON/kernels/NEGatherKernel.h
@@ -85,23 +85,18 @@ private:
*
* For gather on the 0 axis an element by element copy is performed.
*
- * @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.
+ * @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.
*/
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 run the kernel. (Must be a region of the window returned by window())
- * @param[in] info Info about running thread and CPU.
+ * @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.
*/
template <typename U>
void gather_n_axis(const Window &window, const ThreadInfo &info);