[loco exporter] Implement loco exporter v0.1 (#3737)
authorIvan Vagin/AI Tools Lab /SRR/Engineer/삼성전자 <ivan.vagin@samsung.com>
Fri, 14 Jun 2019 04:43:16 +0000 (07:43 +0300)
committer박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Fri, 14 Jun 2019 04:43:16 +0000 (13:43 +0900)
commitf1959d5471e459036a1c723c058c44e801188566
treea36f8bd75e828a26caa1d50041bbfeed65be8a81
parentd5ac7efeffbc9e4626f672b3d2e43fc476580b4d
[loco exporter] Implement loco exporter v0.1 (#3737)

This commit adds minimal implementation that is able to export
a single node network that includes one MaxPool2D op.

Signed-off-by: Pavel Iliutchenko <p.iliutchenk@samsung.com>
Signed-off-by: Efimov Alexander <a.efimov@samsung.com>
Signed-off-by: Sergei Barannikov <s.barannikov@samsung.com>
15 files changed:
contrib/loco-exporter/CMakeLists.txt
contrib/loco-exporter/include/LocoExporter.h
contrib/loco-exporter/schema/schema.fbs [new file with mode: 0644]
contrib/loco-exporter/src/Exporter.test.cpp [new file with mode: 0644]
contrib/loco-exporter/src/LocoExporter.cpp
contrib/loco-exporter/src/LocoExporterImpl.cpp [new file with mode: 0644]
contrib/loco-exporter/src/LocoExporterImpl.h [new file with mode: 0644]
contrib/loco-exporter/src/LocoExporterUtils.cpp [new file with mode: 0644]
contrib/loco-exporter/src/LocoExporterUtils.h [new file with mode: 0644]
contrib/loco-exporter/src/OperationExporter.cpp [new file with mode: 0644]
contrib/loco-exporter/src/OperationExporter.h [new file with mode: 0644]
contrib/loco-exporter/src/TensorExporter.cpp [new file with mode: 0644]
contrib/loco-exporter/src/TensorExporter.h [new file with mode: 0644]
contrib/loco-exporter/src/TypeInference.cpp [new file with mode: 0644]
contrib/loco-exporter/src/TypeInference.h [new file with mode: 0644]