Remove unnecessary headers files inclusion (#3839)
authorShubham Gupta/SNAP /SRI-Bangalore/Engineer/삼성전자 <shub98.gupta@samsung.com>
Tue, 4 Dec 2018 01:14:23 +0000 (06:44 +0530)
committer오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Tue, 4 Dec 2018 01:14:23 +0000 (10:14 +0900)
This patch will remove not req headers inclusion in the following files:
ArgMinMax.cc
ArgMinMax.h
GenericFullyConnectedLayer.cc
GenericFullyConnectedLayer.h
HashtableLookupLayer.cc
HashtableLookupLayer.h
SimpleBatchToSpaceNd.h
SimpleDepthToSpace.h
SimpleEmbeddingLookup.h
SimpleNeg.h

Signed-off-by: shubham <shub98.gupta@samsung.com>
runtimes/pure_arm_compute/src/internal/layers/ArgMinMax.cc
runtimes/pure_arm_compute/src/internal/layers/ArgMinMax.h
runtimes/pure_arm_compute/src/internal/layers/GenericFullyConnectedLayer.cc
runtimes/pure_arm_compute/src/internal/layers/GenericFullyConnectedLayer.h
runtimes/pure_arm_compute/src/internal/layers/HashtableLookupLayer.cc
runtimes/pure_arm_compute/src/internal/layers/HashtableLookupLayer.h
runtimes/pure_arm_compute/src/internal/layers/SimpleBatchToSpaceNd.h
runtimes/pure_arm_compute/src/internal/layers/SimpleCastLayer.h
runtimes/pure_arm_compute/src/internal/layers/SimpleDepthToSpace.h
runtimes/pure_arm_compute/src/internal/layers/SimpleEmbeddingLookup.h
runtimes/pure_arm_compute/src/internal/layers/SimpleNeg.h

index 4460d4f..be71e46 100644 (file)
@@ -16,7 +16,6 @@
 
 #include "internal/layers/ArgMinMax.h"
 #include <arm_compute/runtime/CL/CLScheduler.h>
-#include <arm_compute/core/CL/CLHelpers.h>
 
 void ArgMinMax::configure(::arm_compute::ITensor *input, ::arm_compute::ITensor *output,
                           std::vector<uint32_t> axis, int rank, bool is_min, bool is_max)
index 88a454d..416efe5 100644 (file)
@@ -18,9 +18,6 @@
 #define __ARG_MIN_MAX_H__
 
 #include "internal/arm_compute.h"
-#include "internal/arm_compute/Cast.h"
-#include <arm_compute/core/ITensor.h>
-#include <arm_compute/runtime/IFunction.h>
 
 class ArgMinMax : public ::arm_compute::IFunction
 {
index fe8c203..28789a8 100644 (file)
@@ -17,8 +17,6 @@
 #include "GenericFullyConnectedLayer.h"
 #include "internal/arm_compute.h"
 
-#include <arm_compute/core/Helpers.h>
-
 void GenericFullyConnectedLayer::configure(::arm_compute::ITensor *input,
                                            ::arm_compute::ITensor *weights,
                                            ::arm_compute::ITensor *biases,
index 44b6a5c..f1519f5 100644 (file)
@@ -23,8 +23,6 @@
 #ifndef __GENERIC_FULLY_CONNECTED_LAYER_H__
 #define __GENERIC_FULLY_CONNECTED_LAYER_H__
 
-#include <arm_compute/runtime/Tensor.h>
-#include <arm_compute/runtime/CL/CLTensor.h>
 #include <arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h>
 #include <arm_compute/runtime/NEON/functions/NEFullyConnectedLayer.h>
 #include "internal/layers/GenericReshapeLayer.h"
index 01a6689..2293aed 100644 (file)
@@ -17,8 +17,6 @@
 #include "internal/layers/HashtableLookupLayer.h"
 
 #include <arm_compute/runtime/CL/CLScheduler.h>
-#include <map>
-#include <cstring>
 
 void HashtableLookupLayer::configure(::arm_compute::ITensor *lookups, ::arm_compute::ITensor *keys,
                                      ::arm_compute::ITensor *values, ::arm_compute::ITensor *output,
index 053bbd8..f8c28c2 100644 (file)
@@ -18,9 +18,6 @@
 #define __HASHTABLE_LOOKUP_H__
 
 #include "internal/arm_compute.h"
-#include <arm_compute/core/ITensor.h>
-#include <arm_compute/runtime/IFunction.h>
-#include <vector>
 
 class HashtableLookupLayer : public ::arm_compute::IFunction
 {
index e15566a..aced917 100644 (file)
@@ -19,8 +19,6 @@
 
 #include "internal/arm_compute.h"
 #include "internal/arm_compute/Cast.h"
-#include <arm_compute/core/ITensor.h>
-#include <arm_compute/runtime/IFunction.h>
 
 class SimpleBatchToSpaceND : public ::arm_compute::IFunction
 {
index 06e51fd..f9a48b4 100644 (file)
@@ -23,8 +23,6 @@
 #ifndef __SIMPLE_CAST_LAYER_H__
 #define __SIMPLE_CAST_LAYER_H__
 
-#include <arm_compute/core/ITensor.h>
-
 #include "internal/arm_compute.h"
 #include "internal/arm_compute/Cast.h"
 
index dac0beb..0f30cbf 100644 (file)
@@ -19,8 +19,6 @@
 
 #include "internal/arm_compute.h"
 #include "internal/arm_compute/Cast.h"
-#include <arm_compute/core/ITensor.h>
-#include <arm_compute/runtime/IFunction.h>
 
 class SimpleDepthToSpace : public ::arm_compute::IFunction
 {
index 00ba54a..fd49943 100644 (file)
@@ -17,8 +17,6 @@
 #define __SIMPLE_EMBEDDING_LOOKUP_H__
 
 #include "internal/arm_compute.h"
-#include <arm_compute/core/ITensor.h>
-#include <arm_compute/runtime/IFunction.h>
 
 /**
  * @file        SimpleEmbeddingLookup.h
index a1a9760..4ca88e7 100644 (file)
@@ -18,8 +18,6 @@
 #define __SIMPLE_NEG_H__
 
 #include "internal/arm_compute.h"
-#include <arm_compute/core/ITensor.h>
-#include <arm_compute/runtime/IFunction.h>
 
 class SimpleNeg : public ::arm_compute::IFunction
 {