STT-tensorflow/tensorflow/compiler/aot/test_graph_tfunknownop.pbtxt
A. Unique TensorFlower 172b874023 Make the pruning of the graph in ahead-of-time compilation
also prune out dependencies of fed tensors.

Remove special handling of control dependencies from the introduced
placeholders.  For a compilation going to XLA, those control dependencies would
not really be doing anything anyway (and the current code was only handling
Placeholder, not PlaceholderV2).

PiperOrigin-RevId: 161157126
2017-07-06 18:22:33 -07:00

59 lines
984 B
Plaintext

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 } }
}
node {
name : "z"
op : "SomeUnknownOp"
input : "x_const"
}
node {
name : "z_identity"
op : "Identity"
input : "z:1"
attr { key : "T" value { type: DT_INT32 } }
}
node {
name : "x_z_sum"
op : "Add"
input : "x_const"
input : "z_identity"
attr { key : "T" value { type: DT_INT32 } }
}
versions {
producer: 15
}