aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/aot/test_graph_tfadd.pbtxt
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/aot/test_graph_tfadd.pbtxt')
-rw-r--r--tensorflow/compiler/aot/test_graph_tfadd.pbtxt63
1 files changed, 63 insertions, 0 deletions
diff --git a/tensorflow/compiler/aot/test_graph_tfadd.pbtxt b/tensorflow/compiler/aot/test_graph_tfadd.pbtxt
new file mode 100644
index 0000000000..91c900e06d
--- /dev/null
+++ b/tensorflow/compiler/aot/test_graph_tfadd.pbtxt
@@ -0,0 +1,63 @@
+node {
+ name : "x_const"
+ op : "Const"
+ attr {
+ key: "value"
+ value {
+ tensor {
+ dtype: DT_INT32
+ tensor_shape {
+ dim {
+ size: 1
+ }
+ }
+ int_val: 1
+ }
+ }
+ }
+ attr {
+ key : "dtype"
+ value {
+ type : DT_INT32
+ }
+ }
+}
+node {
+ name : "y_const"
+ op : "Const"
+ attr {
+ key: "value"
+ value {
+ tensor {
+ dtype: DT_INT32
+ tensor_shape {
+ dim {
+ size: 1
+ }
+ }
+ int_val: 2
+ }
+ }
+ }
+ attr {
+ key: "dtype"
+ value {
+ type: DT_INT32
+ }
+ }
+}
+node {
+ name : "x_y_sum"
+ op : "Add"
+ input : "x_const"
+ input : "y_const"
+ attr {
+ key : "T"
+ value {
+ type: DT_INT32
+ }
+ }
+}
+versions {
+ producer: 15
+}