[exo] Clean empty line for conversion registry (#8622)
author박천교/On-Device Lab(SR)/Engineer/삼성전자 <ch.bahk@samsung.com>
Wed, 30 Oct 2019 23:30:41 +0000 (08:30 +0900)
committer박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Wed, 30 Oct 2019 23:30:41 +0000 (08:30 +0900)
This commit clears empty line in Convert.h, which registers all
conversion passes. This is mainly to enhance readability.

Signed-off-by: Cheongyo Bahk <ch.bahk@samsung.com>
compiler/exo/src/Convert.cpp

index 6be62e1..42ad53a 100644 (file)
@@ -53,46 +53,27 @@ void convert_to_TFLNodes(loco::Graph *graph)
     phase.emplace_back(stdex::make_unique<ShapeInferencePass>());
 
     // Add converters for canonical nodes. Note: Not all loco canonical nodes are listed.
-
     phase.emplace_back(stdex::make_unique<AvgPool2DConverter>());
-
     phase.emplace_back(stdex::make_unique<ConstGenConverter>());
-
     phase.emplace_back(stdex::make_unique<Conv2DConverter>());
-
     phase.emplace_back(stdex::make_unique<DepthwiseConv2DConverter>());
     // TODO loco::DepthwiseFilterEncode
     phase.emplace_back(stdex::make_unique<EltwiseAddConverter>());
-
     phase.emplace_back(stdex::make_unique<EltwiseDivConverter>());
-
     phase.emplace_back(stdex::make_unique<EltwiseMulConverter>());
-
     // TODO loco::EltwiseSqrt
-
     phase.emplace_back(stdex::make_unique<EltwiseSubConverter>());
-
     phase.emplace_back(stdex::make_unique<FeatureBiasAddConverter>());
-
     // TODO loco::FixedReshape
-
     phase.emplace_back(stdex::make_unique<MaxPool2DConverter>());
-
     phase.emplace_back(stdex::make_unique<ReluConverter>());
-
     phase.emplace_back(stdex::make_unique<Relu6Converter>());
-
     // TODO loco::Tanh
-
     phase.emplace_back(stdex::make_unique<TensorConcatConverter>());
-
     // TODO loco::TensorBiasAdd
     phase.emplace_back(stdex::make_unique<TensorBroadcastConverter>());
-
     // TODO loco::TensorSoftmax
-
     phase.emplace_back(stdex::make_unique<TensorTransposeConverter>());
-
     phase.emplace_back(stdex::make_unique<TransposedConv2DConverter>());
 
     // Add optimization below