Remove not req headers from the layers in internal folder (#3840)
authorShubham Gupta/SNAP /SRI-Bangalore/Engineer/삼성전자 <shub98.gupta@samsung.com>
Tue, 4 Dec 2018 01:13:42 +0000 (06:43 +0530)
committer오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Tue, 4 Dec 2018 01:13:42 +0000 (10:13 +0900)
This patch will remove unnecessary headers for the follwing files
from the internal/layers :
SimplePackLayer.cc
SimplePackLayer.h
SimplePadLayer.h
SimpleSQRT.cc
SimpleSQRT.h
SimpleSpaceToBatchND.h
SimpleSpaceToDepth.h
SimpleTransposeConv.cc
SimpleTransposeConv.h

Signed-off-by: shubham <shub98.gupta@samsung.com>
runtimes/pure_arm_compute/src/internal/layers/SimplePackLayer.cc
runtimes/pure_arm_compute/src/internal/layers/SimplePackLayer.h
runtimes/pure_arm_compute/src/internal/layers/SimplePadLayer.h
runtimes/pure_arm_compute/src/internal/layers/SimpleSQRT.cc
runtimes/pure_arm_compute/src/internal/layers/SimpleSQRT.h
runtimes/pure_arm_compute/src/internal/layers/SimpleSpaceToBatchND.h
runtimes/pure_arm_compute/src/internal/layers/SimpleSpaceToDepth.h
runtimes/pure_arm_compute/src/internal/layers/SimpleTransposeConv.cc
runtimes/pure_arm_compute/src/internal/layers/SimpleTransposeConv.h

index 309f62a..43ef93c 100644 (file)
@@ -1,6 +1,5 @@
 #include "internal/arm_compute.h"
 #include "SimplePackLayer.h"
-#include "internal/Swizzle.h"
 
 void SimplePackLayer::configure(const std::vector<::arm_compute::ICLTensor *> &input_vector,
                                 ::arm_compute::ICLTensor *output, int32_t axis)
index ec01ccb..2e7edaf 100644 (file)
@@ -1,7 +1,6 @@
 #ifndef __SIMPLE_PACK_LAYER_H__
 #define __SIMPLE_PACK_LAYER_H__
 
-#include <arm_compute/runtime/Tensor.h>
 #include <arm_compute/runtime/CL/CLTensor.h>
 #include <arm_compute/runtime/CL/CLSubTensor.h>
 #include <arm_compute/runtime/CL/functions/CLReshapeLayer.h>
index e636a7c..8cb6659 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 SimplePadLayer : public ::arm_compute::IFunction
 {
index 32d2828..b5b3a09 100644 (file)
@@ -16,7 +16,6 @@
 
 #include "internal/layers/SimpleSQRT.h"
 
-#include <math.h>
 #include <arm_compute/runtime/CL/CLScheduler.h>
 
 void SimpleSQRT::configure(::arm_compute::ITensor *input, ::arm_compute::ITensor *output)
index ec2e7b0..b05a9e3 100644 (file)
@@ -18,8 +18,6 @@
 #define __SIMPLE_SQRT_H__
 
 #include "internal/arm_compute.h"
-#include <arm_compute/core/ITensor.h>
-#include <arm_compute/runtime/IFunction.h>
 
 class SimpleSQRT : public ::arm_compute::IFunction
 {
index 1474551..500bcd7 100644 (file)
@@ -18,8 +18,6 @@
 #define __SIMPLE_SPACE_TO_BATCHND_H__
 
 #include "internal/arm_compute.h"
-#include <arm_compute/core/ITensor.h>
-#include <arm_compute/runtime/IFunction.h>
 
 class SimpleSpaceToBatchND : public ::arm_compute::IFunction
 {
index 9a08263..fb56034 100644 (file)
@@ -25,8 +25,6 @@
 
 #include "internal/arm_compute.h"
 #include "internal/arm_compute/Cast.h"
-#include <arm_compute/core/ITensor.h>
-#include <arm_compute/runtime/IFunction.h>
 
 /**
  * @brief Class to run SimpleEmbeddingLookup Layer
index d054f17..12fb5eb 100644 (file)
@@ -16,7 +16,6 @@
 
 #include "internal/layers/SimpleTransposeConv.h"
 #include <arm_compute/runtime/CL/CLScheduler.h>
-#include <stdio.h>
 
 void SimpleTransposeConv::configure(::arm_compute::ITensor *input, ::arm_compute::ITensor *weights,
                                     ::arm_compute::ITensor *output, int32_t stride_width,
index fd380d4..bd18bcb 100644 (file)
 #define __TRANSPOSE_CONV_EX__
 
 #include "internal/arm_compute.h"
-#include <arm_compute/runtime/Tensor.h>
-#include <arm_compute/runtime/CL/CLTensor.h>
-#include <arm_compute/core/ITensor.h>
-#include <arm_compute/runtime/IFunction.h>
 #include "internal/arm_compute/Cast.h"
 
 class SimpleTransposeConv : public ::arm_compute::IFunction