summaryrefslogtreecommitdiff
path: root/res/TensorFlowTests/REGRESSION_0001
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowTests/REGRESSION_0001')
-rw-r--r--res/TensorFlowTests/REGRESSION_0001/test.info2
-rw-r--r--res/TensorFlowTests/REGRESSION_0001/test.manifest1
-rw-r--r--res/TensorFlowTests/REGRESSION_0001/test.pbtxt59
3 files changed, 62 insertions, 0 deletions
diff --git a/res/TensorFlowTests/REGRESSION_0001/test.info b/res/TensorFlowTests/REGRESSION_0001/test.info
new file mode 100644
index 000000000..76e76187c
--- /dev/null
+++ b/res/TensorFlowTests/REGRESSION_0001/test.info
@@ -0,0 +1,2 @@
+input, Placeholder:0, TF_FLOAT, [2, 3]
+output, Add_2:0, TF_FLOAT, [2, 3]
diff --git a/res/TensorFlowTests/REGRESSION_0001/test.manifest b/res/TensorFlowTests/REGRESSION_0001/test.manifest
new file mode 100644
index 000000000..136452d3c
--- /dev/null
+++ b/res/TensorFlowTests/REGRESSION_0001/test.manifest
@@ -0,0 +1 @@
+SUMMARY: Successive Broadcasted Add
diff --git a/res/TensorFlowTests/REGRESSION_0001/test.pbtxt b/res/TensorFlowTests/REGRESSION_0001/test.pbtxt
new file mode 100644
index 000000000..99d276c00
--- /dev/null
+++ b/res/TensorFlowTests/REGRESSION_0001/test.pbtxt
@@ -0,0 +1,59 @@
+node {
+ name: "Placeholder"
+ op: "Placeholder"
+ attr {
+ key: "dtype"
+ value { type: DT_FLOAT }
+ }
+ attr {
+ key: "shape"
+ value {
+ shape {
+ dim { size: 2 }
+ dim { size: 3 }
+ }
+ }
+ }
+}
+node {
+ name: "Const"
+ op: "Const"
+ attr {
+ key: "dtype"
+ value { type: DT_FLOAT }
+ }
+ attr {
+ key: "value"
+ value {
+ tensor {
+ dtype: DT_FLOAT
+ tensor_shape {
+ dim { size: 3 }
+ }
+ float_val: 1.1
+ float_val: 2.2
+ float_val: 3.3
+ }
+ }
+ }
+}
+node {
+ name: "Add_1"
+ op: "Add"
+ input: "Placeholder"
+ input: "Const"
+ attr {
+ key: "T"
+ value { type: DT_FLOAT }
+ }
+}
+node {
+ name: "Add_2"
+ op: "Add"
+ input: "Add_1"
+ input: "Const"
+ attr {
+ key: "T"
+ value { type: DT_FLOAT }
+ }
+}