[moco-tf] Tidy includes in Op folder (#8198)
author박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>
Wed, 16 Oct 2019 01:35:17 +0000 (10:35 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Wed, 16 Oct 2019 01:35:17 +0000 (10:35 +0900)
This will tidy includes in Op folder that is not necessary anymore

Signed-off-by: SaeHie Park <saehie.park@samsung.com>
12 files changed:
compiler/moco-tf/src/Op/AvgPool.cpp
compiler/moco-tf/src/Op/BiasAdd.cpp
compiler/moco-tf/src/Op/COpCall.cpp
compiler/moco-tf/src/Op/COpCall.h
compiler/moco-tf/src/Op/Concat.cpp
compiler/moco-tf/src/Op/Const.cpp
compiler/moco-tf/src/Op/Conv2D.cpp
compiler/moco-tf/src/Op/Identity.cpp
compiler/moco-tf/src/Op/MaxPool.cpp
compiler/moco-tf/src/Op/Relu.cpp
compiler/moco-tf/src/Op/Relu6.cpp
compiler/moco-tf/src/Op/Relu6.h

index 4db8172..a8345d4 100644 (file)
 #include "AvgPool.h"
 
 #include "Convert.h"
-#include "GraphBuilder.h"
-#include "GraphBuilderContext.h"
-#include "Knob.h"
 
 #include "IR/TFAvgPool.h"
 
-#include "Annotations/PaddingData.h"
-
 #include <moco/tf/Names.h>
 
 #include <loco/IR/PermutingCodec.h>
index 377f98f..cef7ce3 100644 (file)
 
 #include "BiasAdd.h"
 
-#include "GraphBuilder.h"
-#include "GraphBuilderContext.h"
-#include "Knob.h"
-
 #include "IR/TFBiasAdd.h"
 
 #include <moco/tf/Names.h>
 #include <stdex/Memory.h>
 #include <plier/tf/Convert.h>
 
-#include <tensorflow/core/framework/graph.pb.h>
-
 #include <cassert>
-#include <stdexcept>
 #include <vector>
 
 namespace
index 2bd3fcd..5b3b6c9 100644 (file)
@@ -17,8 +17,6 @@
 #include "COpCall.h"
 
 #include "Convert.h"
-#include "GraphBuilder.h"
-#include "GraphBuilderContext.h"
 
 #include <locoex/COpCall.h>
 #include <locoex/COpAttrTypes.h>
@@ -27,8 +25,6 @@
 #include <loco.h>
 #include <stdex/Memory.h>
 
-#include <tensorflow/core/framework/graph.pb.h>
-
 #include <vector>
 #include <cassert>
 #include <stdexcept>
index ea81d3a..0124374 100644 (file)
 #define __OP_COP_CALL_H__
 
 #include "GraphBuilder.h"
-#include "GraphBuilderContext.h"
 
 #include <moco/tf/Frontend.h>
 
-#include <tensorflow/core/framework/graph.pb.h>
-
 namespace moco
 {
 namespace tf
index eab5390..d9f79e5 100644 (file)
 
 #include "Concat.h"
 
-#include "GraphBuilder.h"
-#include "GraphBuilderContext.h"
-#include "Knob.h"
-
 #include "IR/TFConcatV2.h"
 
-#include "Annotations/ConcatData.h"
-
 #include <moco/tf/Names.h>
 
 #include <loco.h>
 #include <stdex/Memory.h>
 #include <plier/tf/Convert.h>
 
-#include <tensorflow/core/framework/graph.pb.h>
-
 #include <cassert>
-#include <stdexcept>
 
 namespace
 {
index 4ee2a64..2865597 100644 (file)
 
 #include "Const.h"
 
-#include "GraphBuilder.h"
-#include "GraphBuilderContext.h"
-#include "Knob.h"
-
 #include "IR/TFConst.h"
 
 #include <moco/tf/Names.h>
 #include <loco.h>
 #include <plier/tf/Convert.h>
 
-#include <tensorflow/core/framework/graph.pb.h>
-
 #include <cassert>
 #include <stdexcept>
 #include <string>
index 314f284..76a98c7 100644 (file)
  */
 
 #include "Conv2D.h"
-
 #include "Convert.h"
-#include "GraphBuilder.h"
-#include "GraphBuilderContext.h"
-#include "Knob.h"
 
 #include "IR/TFConv2D.h"
 
-#include "Annotations/PaddingData.h"
-
 #include <moco/tf/Names.h>
 
 #include <loco.h>
@@ -32,8 +26,6 @@
 #include <stdex/Memory.h>
 #include <plier/tf/Convert.h>
 
-#include <tensorflow/core/framework/graph.pb.h>
-
 #include <cassert>
 #include <stdexcept>
 #include <algorithm>
index c67aea8..bc8681a 100644 (file)
 
 #include "Identity.h"
 
-#include "GraphBuilder.h"
-#include "GraphBuilderContext.h"
-#include "Knob.h"
-
 #include "IR/TFIdentity.h"
 
 #include <moco/tf/Names.h>
 #include <loco.h>
 #include <stdex/Memory.h>
 
-#include <tensorflow/core/framework/graph.pb.h>
-
 #include <cassert>
 #include <stdexcept>
 #include <string>
index 38ff49f..1531419 100644 (file)
  */
 
 #include "MaxPool.h"
-
 #include "Convert.h"
-#include "GraphBuilder.h"
-#include "GraphBuilderContext.h"
-#include "Knob.h"
 
 #include "IR/TFMaxPool.h"
 
-#include "Annotations/PaddingData.h"
-
 #include <moco/tf/Names.h>
 #include <loco.h>
 #include <loco/IR/PermutingCodec.h>
 #include <stdex/Memory.h>
 #include <plier/tf/Convert.h>
 
-#include <tensorflow/core/framework/graph.pb.h>
-
 #include <cassert>
 #include <stdexcept>
 
index 24f3378..3f81336 100644 (file)
 
 #include "Relu.h"
 
-#include "GraphBuilder.h"
-#include "GraphBuilderContext.h"
-#include "Knob.h"
-
 #include "IR/TFRelu.h"
 
 #include <moco/tf/Names.h>
 #include <loco.h>
 #include <stdex/Memory.h>
 
-#include <tensorflow/core/framework/graph.pb.h>
-
 #include <cassert>
 #include <stdexcept>
 
index 0801e50..ecd251e 100644 (file)
@@ -16,9 +16,6 @@
 
 #include "Relu6.h"
 
-#include "GraphBuilder.h"
-#include "Knob.h"
-
 #include "IR/TFRelu6.h"
 
 #include <stdex/Memory.h>
index a9569b2..69b23af 100644 (file)
@@ -18,7 +18,6 @@
 #define __OP_RELU6_H__
 
 #include "GraphBuilder.h"
-#include "GraphBuilderContext.h"
 
 namespace moco
 {