summaryrefslogtreecommitdiff
path: root/res/TensorFlowTests
diff options
context:
space:
mode:
author박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>2019-08-06 08:17:11 +0900
committerGitHub Enterprise <noreply-CODE@samsung.com>2019-08-06 08:17:11 +0900
commit4704c634c3bb9b2f37b5e6142ac3432a823e4821 (patch)
tree9919cf39ba5779797a0c26061bfebb8baaf00a84 /res/TensorFlowTests
parentb0dac8246c82dbec03dcac7a998b17a1e659605e (diff)
downloadnnfw-4704c634c3bb9b2f37b5e6142ac3432a823e4821.tar.gz
nnfw-4704c634c3bb9b2f37b5e6142ac3432a823e4821.tar.bz2
nnfw-4704c634c3bb9b2f37b5e6142ac3432a823e4821.zip
[res] TF Sub_000 (#6231)
This will introduce Sub_000 TensorFlow test model with one Sub node Signed-off-by: SaeHie Park <saehie.park@samsung.com>
Diffstat (limited to 'res/TensorFlowTests')
-rw-r--r--res/TensorFlowTests/Sub_000/test.info3
-rw-r--r--res/TensorFlowTests/Sub_000/test.pbtxt70
2 files changed, 73 insertions, 0 deletions
diff --git a/res/TensorFlowTests/Sub_000/test.info b/res/TensorFlowTests/Sub_000/test.info
new file mode 100644
index 000000000..4a6ba8b83
--- /dev/null
+++ b/res/TensorFlowTests/Sub_000/test.info
@@ -0,0 +1,3 @@
+input, input_01:0, TF_FLOAT, [1, 3, 3, 1]
+input, input_02:0, TF_FLOAT, [1, 3, 3, 1]
+output, sub:0, TF_FLOAT, [1, 3, 3, 1]
diff --git a/res/TensorFlowTests/Sub_000/test.pbtxt b/res/TensorFlowTests/Sub_000/test.pbtxt
new file mode 100644
index 000000000..61ecd0221
--- /dev/null
+++ b/res/TensorFlowTests/Sub_000/test.pbtxt
@@ -0,0 +1,70 @@
+node {
+ name: "input_01"
+ op: "Placeholder"
+ attr {
+ key: "dtype"
+ value {
+ type: DT_FLOAT
+ }
+ }
+ attr {
+ key: "shape"
+ value {
+ shape {
+ dim {
+ size: 1
+ }
+ dim {
+ size: 3
+ }
+ dim {
+ size: 3
+ }
+ dim {
+ size: 1
+ }
+ }
+ }
+ }
+}
+node {
+ name: "input_02"
+ op: "Placeholder"
+ attr {
+ key: "dtype"
+ value {
+ type: DT_FLOAT
+ }
+ }
+ attr {
+ key: "shape"
+ value {
+ shape {
+ dim {
+ size: 1
+ }
+ dim {
+ size: 3
+ }
+ dim {
+ size: 3
+ }
+ dim {
+ size: 1
+ }
+ }
+ }
+ }
+}
+node {
+ name: "sub"
+ op: "Sub"
+ input: "input_01"
+ input: "input_02"
+ attr {
+ key: "T"
+ value {
+ type: DT_FLOAT
+ }
+ }
+}