summaryrefslogtreecommitdiff
path: root/res/TensorFlowTests/UNIT_Placeholder_001
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowTests/UNIT_Placeholder_001')
-rw-r--r--res/TensorFlowTests/UNIT_Placeholder_001/test.info2
-rw-r--r--res/TensorFlowTests/UNIT_Placeholder_001/test.manifest1
-rw-r--r--res/TensorFlowTests/UNIT_Placeholder_001/test.pbtxt40
3 files changed, 43 insertions, 0 deletions
diff --git a/res/TensorFlowTests/UNIT_Placeholder_001/test.info b/res/TensorFlowTests/UNIT_Placeholder_001/test.info
new file mode 100644
index 000000000..f5e08fb5b
--- /dev/null
+++ b/res/TensorFlowTests/UNIT_Placeholder_001/test.info
@@ -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_001/test.manifest b/res/TensorFlowTests/UNIT_Placeholder_001/test.manifest
new file mode 100644
index 000000000..232ba50a3
--- /dev/null
+++ b/res/TensorFlowTests/UNIT_Placeholder_001/test.manifest
@@ -0,0 +1 @@
+SUMMARY: A simple network of placeholder with unknown dimension.
diff --git a/res/TensorFlowTests/UNIT_Placeholder_001/test.pbtxt b/res/TensorFlowTests/UNIT_Placeholder_001/test.pbtxt
new file mode 100644
index 000000000..0913d28e3
--- /dev/null
+++ b/res/TensorFlowTests/UNIT_Placeholder_001/test.pbtxt
@@ -0,0 +1,40 @@
+node {
+ name: "Placeholder"
+ op: "Placeholder"
+ attr {
+ key: "dtype"
+ value {
+ type: DT_FLOAT
+ }
+ }
+ attr {
+ key: "shape"
+ value {
+ shape {
+ dim {
+ size: 1
+ }
+ dim {
+ size: 2
+ }
+ dim {
+ size: 3
+ }
+ dim {
+ size: -1
+ }
+ }
+ }
+ }
+}
+node {
+ name: "Identity"
+ op: "Identity"
+ input: "Placeholder"
+ attr {
+ key: "T"
+ value {
+ type: DT_FLOAT
+ }
+ }
+}