[neurun] Add setInput/setOutput into graph node (#2406)
author김수진/동작제어Lab(SR)/Engineer/삼성전자 <sjsujin.kim@samsung.com>
Wed, 22 Aug 2018 07:28:13 +0000 (16:28 +0900)
committer오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Wed, 22 Aug 2018 07:28:13 +0000 (16:28 +0900)
commit8223311543d90e97af7288ee492c439241c2cb60
tree944b4d76293068a2ca641d1d0fd93879670753f3
parenta16b7ba5fc20f8f7c65a7c1131adcf06f3db0ad8
[neurun] Add setInput/setOutput into graph node (#2406)

* [neurun] Add setInput/setOutput into graph node

This commit adds setInput/setOutput into graph node.

Signed-off-by: sjsujinkim sjsujin.kim@samsung.com
* change function names from set{In/Out}put to {in/out}put

* fix format in Set test
28 files changed:
runtimes/neurun/src/graph/operation/AvgPool2D.cc
runtimes/neurun/src/graph/operation/AvgPool2D.h
runtimes/neurun/src/graph/operation/Concat.cc
runtimes/neurun/src/graph/operation/Concat.h
runtimes/neurun/src/graph/operation/Conv2D.cc
runtimes/neurun/src/graph/operation/Conv2D.h
runtimes/neurun/src/graph/operation/FullyConnected.cc
runtimes/neurun/src/graph/operation/FullyConnected.h
runtimes/neurun/src/graph/operation/MaxPool2D.cc
runtimes/neurun/src/graph/operation/MaxPool2D.h
runtimes/neurun/src/graph/operation/NOP.cc
runtimes/neurun/src/graph/operation/NOP.h
runtimes/neurun/src/graph/operation/Node.h
runtimes/neurun/src/graph/operation/Reshape.cc
runtimes/neurun/src/graph/operation/Reshape.h
runtimes/neurun/src/graph/operation/Softmax.cc
runtimes/neurun/src/graph/operation/Softmax.h
runtimes/neurun/src/internal/op/AvgPool2D.h
runtimes/neurun/src/internal/op/Concat.h
runtimes/neurun/src/internal/op/Conv2D.h
runtimes/neurun/src/internal/op/FullyConnected.h
runtimes/neurun/src/internal/op/MaxPool2D.h
runtimes/neurun/src/internal/op/NOP.h
runtimes/neurun/src/internal/op/Reshape.h
runtimes/neurun/src/internal/op/Softmax.h
runtimes/neurun/test/graph/operation/Set.cc
runtimes/neurun/test/graph/operation/SetIO.cc [new file with mode: 0644]
runtimes/neurun/test/graph/verifier/Verifier.cc