From 188f0efe33aa4e70406500abdc48ca38e5f9ab9d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Shubham=20Gupta/System=20SW=20/SRI-Bangalore/Engineer/?= =?utf8?q?=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Mon, 29 Oct 2018 07:44:28 +0530 Subject: [PATCH] Remove unnecessary headers from src/runtime/CL/functions/* (#3374) This patch will remove unnecessary headers from src/runtime/CL/functions Signed-off-by: shubham --- libs/ARMComputeEx/src/runtime/CL/functions/CLActivationLayerEx.cpp | 3 --- .../src/runtime/CL/functions/CLArithmeticSubtractionEx.cpp | 3 --- libs/ARMComputeEx/src/runtime/CL/functions/CLBatchToSpaceND.cpp | 1 - libs/ARMComputeEx/src/runtime/CL/functions/CLCast.cpp | 1 - libs/ARMComputeEx/src/runtime/CL/functions/CLDepthToSpace.cpp | 1 - libs/ARMComputeEx/src/runtime/CL/functions/CLEqual.cpp | 2 -- libs/ARMComputeEx/src/runtime/CL/functions/CLExp.cpp | 1 - libs/ARMComputeEx/src/runtime/CL/functions/CLGather.cpp | 4 ---- libs/ARMComputeEx/src/runtime/CL/functions/CLNeg.cpp | 2 -- .../src/runtime/CL/functions/CLNormalizationLayerEx.cpp | 4 ---- libs/ARMComputeEx/src/runtime/CL/functions/CLPixelWiseDivision.cpp | 3 --- libs/ARMComputeEx/src/runtime/CL/functions/CLReduceMax.cpp | 7 ------- libs/ARMComputeEx/src/runtime/CL/functions/CLReduceSum.cpp | 6 ------ libs/ARMComputeEx/src/runtime/CL/functions/CLReductionMean.cpp | 6 ------ libs/ARMComputeEx/src/runtime/CL/functions/CLSpaceToDepth.cpp | 1 - libs/ARMComputeEx/src/runtime/CL/functions/CLSquaredDifference.cpp | 3 --- libs/ARMComputeEx/src/runtime/CL/functions/CLStridedSlice.cpp | 2 -- 17 files changed, 50 deletions(-) diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLActivationLayerEx.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLActivationLayerEx.cpp index d84d4fb..1e52fc4 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLActivationLayerEx.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLActivationLayerEx.cpp @@ -17,9 +17,6 @@ #include "arm_compute/runtime/CL/functions/CLActivationLayerEx.h" #include "arm_compute/core/CL/kernels/CLActivationLayerExKernel.h" -#include "arm_compute/core/Types.h" -#include "arm_compute/core/TypesEx.h" -#include "support/ToolchainSupport.h" using namespace arm_compute; diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLArithmeticSubtractionEx.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLArithmeticSubtractionEx.cpp index d64ffd7..3f403c8 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLArithmeticSubtractionEx.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLArithmeticSubtractionEx.cpp @@ -18,9 +18,6 @@ #include "arm_compute/core/CL/ICLTensor.h" #include "arm_compute/core/CL/kernels/CLArithmeticSubtractionExKernel.h" -#include "support/ToolchainSupport.h" - -#include using namespace arm_compute; diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLBatchToSpaceND.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLBatchToSpaceND.cpp index 0827574..26e3798 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLBatchToSpaceND.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLBatchToSpaceND.cpp @@ -17,7 +17,6 @@ #include "arm_compute/runtime/CL/functions/CLBatchToSpaceND.h" #include "arm_compute/core/CL/kernels/CLBatchToSpaceNDKernel.h" -#include "support/ToolchainSupport.h" using namespace arm_compute; diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLCast.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLCast.cpp index e1059ab..8e10673 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLCast.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLCast.cpp @@ -17,7 +17,6 @@ #include "arm_compute/runtime/CL/functions/CLCast.h" #include "arm_compute/core/CL/kernels/CLCastKernel.h" -#include "support/ToolchainSupport.h" using namespace arm_compute; diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLDepthToSpace.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLDepthToSpace.cpp index c8af786..c2e4ca9 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLDepthToSpace.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLDepthToSpace.cpp @@ -17,7 +17,6 @@ #include "arm_compute/runtime/CL/functions/CLDepthToSpace.h" #include "arm_compute/core/CL/kernels/CLDepthToSpaceKernel.h" -#include "support/ToolchainSupport.h" using namespace arm_compute; diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLEqual.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLEqual.cpp index 16553e3..7881e3d 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLEqual.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLEqual.cpp @@ -18,8 +18,6 @@ #include "arm_compute/core/CL/kernels/CLEqualKernel.h" -#include - using namespace arm_compute; void CLEqual::configure(ICLTensor *input1, ICLTensor *input2, ICLTensor *output) diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLExp.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLExp.cpp index b360e71..411fa87 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLExp.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLExp.cpp @@ -17,7 +17,6 @@ #include "arm_compute/runtime/CL/functions/CLExp.h" #include "arm_compute/core/CL/kernels/CLExpKernel.h" -#include "support/ToolchainSupport.h" using namespace arm_compute; diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLGather.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLGather.cpp index 5552cbc..fb056fe 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLGather.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLGather.cpp @@ -16,11 +16,7 @@ */ #include "arm_compute/runtime/CL/functions/CLGather.h" -#include "arm_compute/core/CL/ICLTensor.h" #include "arm_compute/core/CL/kernels/CLGatherKernel.h" -#include "support/ToolchainSupport.h" - -#include using namespace arm_compute; diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLNeg.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLNeg.cpp index c1122ee..be35ea7 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLNeg.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLNeg.cpp @@ -18,8 +18,6 @@ #include "arm_compute/core/CL/kernels/CLNegKernel.h" -#include - using namespace arm_compute; void CLNeg::configure(ICLTensor *input, ICLTensor *output) diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLNormalizationLayerEx.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLNormalizationLayerEx.cpp index 68ccdc8..276c455 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLNormalizationLayerEx.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLNormalizationLayerEx.cpp @@ -16,10 +16,6 @@ */ #include "arm_compute/runtime/CL/functions/CLNormalizationLayerEx.h" -#include "arm_compute/core/Error.h" -#include "arm_compute/core/TensorInfo.h" -#include "arm_compute/core/Types.h" -#include "arm_compute/core/Validate.h" #include "arm_compute/runtime/CL/CLScheduler.h" using namespace arm_compute; diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLPixelWiseDivision.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLPixelWiseDivision.cpp index e1add5e..dc0baa8 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLPixelWiseDivision.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLPixelWiseDivision.cpp @@ -18,9 +18,6 @@ #include "arm_compute/core/CL/ICLTensor.h" #include "arm_compute/core/CL/kernels/CLPixelWiseDivisionKernel.h" -#include "support/ToolchainSupport.h" - -#include using namespace arm_compute; diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLReduceMax.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLReduceMax.cpp index 57b720b..1a6f5e9 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLReduceMax.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLReduceMax.cpp @@ -17,15 +17,8 @@ #include "arm_compute/runtime/CL/functions/CLReduceMax.h" #include "arm_compute/core/CL/ICLTensor.h" -#include "support/ToolchainSupport.h" -#include "arm_compute/core/CL/CLHelpers.h" #include "arm_compute/core/CL/kernels/CLReduceMaxKernel.h" -#include -#include - -#include - #define REDUCE_MAX_RUN_ON_CPU 1 namespace arm_compute diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLReduceSum.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLReduceSum.cpp index 04d4c79..e572c32 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLReduceSum.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLReduceSum.cpp @@ -17,14 +17,8 @@ #include "arm_compute/runtime/CL/functions/CLReduceSum.h" #include "arm_compute/core/CL/ICLTensor.h" -#include "arm_compute/core/CL/CLHelpers.h" #include "arm_compute/core/CL/kernels/CLReduceSumKernel.h" #include "arm_compute/runtime/CL/CLScheduler.h" -#include "support/ToolchainSupport.h" - -#include -#include -#include #define REDUCE_SUM_RUN_ON_CPU 1 diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLReductionMean.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLReductionMean.cpp index ab724e7..e501e86 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLReductionMean.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLReductionMean.cpp @@ -18,13 +18,7 @@ #include "arm_compute/core/CL/ICLTensor.h" #include "arm_compute/core/CL/kernels/CLReductionMeanKernel.h" -#include "arm_compute/core/Error.h" -#include "arm_compute/core/PixelValue.h" -#include "arm_compute/core/TensorInfo.h" -#include "arm_compute/core/Validate.h" #include "arm_compute/runtime/CL/CLScheduler.h" -#include "arm_compute/runtime/Tensor.h" -#include "support/ToolchainSupport.h" using namespace arm_compute; diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLSpaceToDepth.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLSpaceToDepth.cpp index b0daf48..0f455f9 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLSpaceToDepth.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLSpaceToDepth.cpp @@ -17,7 +17,6 @@ #include "arm_compute/runtime/CL/functions/CLSpaceToDepth.h" #include "arm_compute/core/CL/kernels/CLSpaceToDepthKernel.h" -#include "support/ToolchainSupport.h" using namespace arm_compute; diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLSquaredDifference.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLSquaredDifference.cpp index 40f8648..dc6e4af 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLSquaredDifference.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLSquaredDifference.cpp @@ -17,10 +17,7 @@ #include "arm_compute/runtime/CL/functions/CLSquaredDifference.h" #include "arm_compute/core/CL/kernels/CLSquaredDifferenceKernel.h" - #include "arm_compute/core/CL/ICLTensor.h" -#include "support/ToolchainSupport.h" -#include using namespace arm_compute; diff --git a/libs/ARMComputeEx/src/runtime/CL/functions/CLStridedSlice.cpp b/libs/ARMComputeEx/src/runtime/CL/functions/CLStridedSlice.cpp index e636c2c..50bd0dc 100644 --- a/libs/ARMComputeEx/src/runtime/CL/functions/CLStridedSlice.cpp +++ b/libs/ARMComputeEx/src/runtime/CL/functions/CLStridedSlice.cpp @@ -16,9 +16,7 @@ */ #include "arm_compute/runtime/CL/functions/CLStridedSlice.h" -#include "arm_compute/core/CL/ICLTensor.h" #include "arm_compute/core/CL/kernels/CLStridedSliceKernel.h" -#include "support/ToolchainSupport.h" using namespace arm_compute; -- 2.7.4