summaryrefslogtreecommitdiff
path: root/res/TensorFlowTests/UI_0010
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowTests/UI_0010')
-rw-r--r--res/TensorFlowTests/UI_0010/test.info2
-rw-r--r--res/TensorFlowTests/UI_0010/test.manifest1
-rw-r--r--res/TensorFlowTests/UI_0010/test.pbtxt34
3 files changed, 37 insertions, 0 deletions
diff --git a/res/TensorFlowTests/UI_0010/test.info b/res/TensorFlowTests/UI_0010/test.info
new file mode 100644
index 000000000..c8da7cc3e
--- /dev/null
+++ b/res/TensorFlowTests/UI_0010/test.info
@@ -0,0 +1,2 @@
+input Placeholder:0, TF_FLOAT, [1, 2]
+output, relu:0, TF_FLOAT, [1, 2]
diff --git a/res/TensorFlowTests/UI_0010/test.manifest b/res/TensorFlowTests/UI_0010/test.manifest
new file mode 100644
index 000000000..598164e32
--- /dev/null
+++ b/res/TensorFlowTests/UI_0010/test.manifest
@@ -0,0 +1 @@
+SUMMARY: Wrong info file. Missing comma after 'input'.
diff --git a/res/TensorFlowTests/UI_0010/test.pbtxt b/res/TensorFlowTests/UI_0010/test.pbtxt
new file mode 100644
index 000000000..5806251fb
--- /dev/null
+++ b/res/TensorFlowTests/UI_0010/test.pbtxt
@@ -0,0 +1,34 @@
+node {
+ name: "Placeholder"
+ op: "Placeholder"
+ attr {
+ key: "dtype"
+ value {
+ type: DT_FLOAT
+ }
+ }
+ attr {
+ key: "shape"
+ value {
+ shape {
+ dim {
+ size: 1
+ }
+ dim {
+ size: 2
+ }
+ }
+ }
+ }
+}
+node {
+ name: "relu"
+ op: "Relu"
+ input: "Placeholder"
+ attr {
+ key: "T"
+ value {
+ type: DT_FLOAT
+ }
+ }
+}