summaryrefslogtreecommitdiff
path: root/res/TensorFlowTests/REGRESSION_0001/test.pbtxt
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowTests/REGRESSION_0001/test.pbtxt')
-rw-r--r--res/TensorFlowTests/REGRESSION_0001/test.pbtxt59
1 files changed, 59 insertions, 0 deletions
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 }
+ }
+}