[moco] Import Nodes (#8336)
author박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>
Mon, 21 Oct 2019 05:26:59 +0000 (14:26 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Mon, 21 Oct 2019 05:26:59 +0000 (14:26 +0900)
commit8eb05a8d4cbe7ad8024be9dcecfb53eaefa38a28
tree2560a40039dce1d8048a44d2d7f4c8471d39b0be
parentd4785f7ba934e906ad1135dcd717cbc66063e34a
[moco] Import Nodes (#8336)

This will add Import GraphBuilder Nodes to import TensorFlow NodeDef

Signed-off-by: SaeHie Park <saehie.park@samsung.com>
58 files changed:
compiler/moco/import/include/moco/Import/Nodes.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Add.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/AvgPool.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/BiasAdd.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Concat.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Const.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Conv2D.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Conv2DBackpropInput.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/DepthwiseConv2dNative.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/FusedBatchNorm.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Identity.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/MaxPool.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Mean.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Mul.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Pad.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Placeholder.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/RealDiv.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Relu.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Relu6.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Reshape.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Rsqrt.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Shape.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Softmax.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Sqrt.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/SquaredDifference.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Squeeze.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/StopGradient.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Sub.h [new file with mode: 0644]
compiler/moco/import/include/moco/Import/Nodes/Tanh.h [new file with mode: 0644]
compiler/moco/import/src/Nodes/Add.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Add.test.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/AvgPool.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/BiasAdd.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Concat.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Const.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Conv2D.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Conv2DBackpropInput.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/DepthwiseConv2dNative.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/FusedBatchNorm.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Identity.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/MaxPool.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Mean.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Mul.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Pad.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Placeholder.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/RealDiv.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Relu.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Relu6.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Reshape.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Rsqrt.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Shape.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Softmax.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Sqrt.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/SquaredDifference.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Squeeze.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/StopGradient.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Sub.cpp [new file with mode: 0644]
compiler/moco/import/src/Nodes/Tanh.cpp [new file with mode: 0644]