summaryrefslogtreecommitdiff
path: root/res/TensorFlowTests/UNIT_Placeholder_002
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowTests/UNIT_Placeholder_002')
-rw-r--r--res/TensorFlowTests/UNIT_Placeholder_002/test.info2
-rw-r--r--res/TensorFlowTests/UNIT_Placeholder_002/test.pbtxt21
2 files changed, 23 insertions, 0 deletions
diff --git a/res/TensorFlowTests/UNIT_Placeholder_002/test.info b/res/TensorFlowTests/UNIT_Placeholder_002/test.info
new file mode 100644
index 000000000..f5e08fb5b
--- /dev/null
+++ b/res/TensorFlowTests/UNIT_Placeholder_002/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_002/test.pbtxt b/res/TensorFlowTests/UNIT_Placeholder_002/test.pbtxt
new file mode 100644
index 000000000..e3b468275
--- /dev/null
+++ b/res/TensorFlowTests/UNIT_Placeholder_002/test.pbtxt
@@ -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
+ }
+ }
+}