[res] add no shape placeholder network (#8412)
author채성우/On-Device Lab(SR)/Engineer/삼성전자 <sw4670.chae@samsung.com>
Wed, 23 Oct 2019 09:00:43 +0000 (18:00 +0900)
committer박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Wed, 23 Oct 2019 09:00:43 +0000 (18:00 +0900)
This commit adds no shape placeholder simple network.

Signed-off-by: seongwoo <sw4670.chae@samsung.com>
res/TensorFlowTests/UNIT_Placeholder_002/test.info [new file with mode: 0644]
res/TensorFlowTests/UNIT_Placeholder_002/test.pbtxt [new file with mode: 0644]

diff --git a/res/TensorFlowTests/UNIT_Placeholder_002/test.info b/res/TensorFlowTests/UNIT_Placeholder_002/test.info
new file mode 100644 (file)
index 0000000..f5e08fb
--- /dev/null
@@ -0,0 +1,2 @@
+input,  Placeholder:0,   TF_FLOAT,   [1, 2, 3, 4]
+output, Identity:0,      TF_FLOAT,   [1, 2, 3, 4]
diff --git a/res/TensorFlowTests/UNIT_Placeholder_002/test.pbtxt b/res/TensorFlowTests/UNIT_Placeholder_002/test.pbtxt
new file mode 100644 (file)
index 0000000..e3b4682
--- /dev/null
@@ -0,0 +1,21 @@
+node {
+  name: "Placeholder"
+  op: "Placeholder"
+  attr {
+    key: "dtype"
+    value {
+      type: DT_FLOAT
+    }
+  }
+}
+node {
+  name: "Identity"
+  op: "Identity"
+  input: "Placeholder"
+  attr {
+    key: "T"
+    value {
+      type: DT_FLOAT
+    }
+  }
+}