aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamy Elgammal <ramy.elgammal@arm.com>2023-05-10 14:33:30 +0100
committerOmar Al Khatib <omar.alkhatib@arm.com>2023-05-10 16:51:03 +0100
commit311a37822389987e28ca870eaac1b668348ca69d (patch)
tree076ac3ed58ccedb541980539fa88a603206b9a8b
parentd2944b44382a562998d33234fc6b08f1da5a83fa (diff)
downloadComputeLibrary-311a37822389987e28ca870eaac1b668348ca69d.tar.gz
Remove inclusion of NEReorderKernel header from NEReorderLayer
Resolves: COMPMID-6235 Change-Id: I7a094a23244286090415ee2788632cfa7bd6c037 Signed-off-by: Ramy Elgammal <ramy.elgammal@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9608 Benchmark: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Pablo Marquez Tello <pablo.tello@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--arm_compute/runtime/NEON/functions/NEReorderLayer.h2
-rw-r--r--src/runtime/NEON/functions/NEReorderLayer.cpp1
-rw-r--r--tests/validation/NEON/ReorderLayer.cpp1
3 files changed, 3 insertions, 1 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEReorderLayer.h b/arm_compute/runtime/NEON/functions/NEReorderLayer.h
index b8d692ac92..a9ce8e3e69 100644
--- a/arm_compute/runtime/NEON/functions/NEReorderLayer.h
+++ b/arm_compute/runtime/NEON/functions/NEReorderLayer.h
@@ -28,12 +28,12 @@
#include "arm_compute/core/Types.h"
#include "arm_compute/runtime/IFunction.h"
-#include "src/core/NEON/kernels/NEReorderKernel.h"
namespace arm_compute
{
class ITensor;
class ITensorInfo;
+class NEReorderKernel;
/** Function to compute blocked reorder. */
class NEReorderLayer : public IFunction
{
diff --git a/src/runtime/NEON/functions/NEReorderLayer.cpp b/src/runtime/NEON/functions/NEReorderLayer.cpp
index 53a7718902..2ab1029f02 100644
--- a/src/runtime/NEON/functions/NEReorderLayer.cpp
+++ b/src/runtime/NEON/functions/NEReorderLayer.cpp
@@ -25,6 +25,7 @@
#include "arm_compute/runtime/NEON/NEScheduler.h"
#include "arm_compute/runtime/NEON/functions/NEReorderLayer.h"
+#include "src/core/NEON/kernels/NEReorderKernel.h"
namespace arm_compute
{
diff --git a/tests/validation/NEON/ReorderLayer.cpp b/tests/validation/NEON/ReorderLayer.cpp
index cc340e9cb1..42fa0f8b00 100644
--- a/tests/validation/NEON/ReorderLayer.cpp
+++ b/tests/validation/NEON/ReorderLayer.cpp
@@ -32,6 +32,7 @@
#include "tests/framework/datasets/Datasets.h"
#include "tests/validation/Validation.h"
#include "tests/validation/fixtures/ReorderFixture.h"
+#include "src/core/NEON/kernels/NEReorderKernel.h"
namespace arm_compute
{