STT-tensorflow/tensorflow/tools/api/golden/v1/tensorflow.-run-metadata.pbtxt
Akshay Modi 7df8df33c5 Add post optimization graph to RunMetadata (when running eager functions)
This stores the pre-grappler graph + post-grappler graph + partitioned graphs
for each instantiated function.

This will be useful to get pre-optimization/post-optimization graphs for
displaying within tensorboard.

PiperOrigin-RevId: 233813975
2019-02-13 13:57:17 -08:00

59 lines
1.3 KiB
Plaintext

path: "tensorflow.RunMetadata"
tf_proto {
descriptor {
name: "RunMetadata"
field {
name: "step_stats"
number: 1
label: LABEL_OPTIONAL
type: TYPE_MESSAGE
type_name: ".tensorflow.StepStats"
}
field {
name: "cost_graph"
number: 2
label: LABEL_OPTIONAL
type: TYPE_MESSAGE
type_name: ".tensorflow.CostGraphDef"
}
field {
name: "partition_graphs"
number: 3
label: LABEL_REPEATED
type: TYPE_MESSAGE
type_name: ".tensorflow.GraphDef"
}
field {
name: "function_graphs"
number: 4
label: LABEL_REPEATED
type: TYPE_MESSAGE
type_name: ".tensorflow.RunMetadata.FunctionGraphs"
}
nested_type {
name: "FunctionGraphs"
field {
name: "partition_graphs"
number: 1
label: LABEL_REPEATED
type: TYPE_MESSAGE
type_name: ".tensorflow.GraphDef"
}
field {
name: "pre_optimization_graph"
number: 2
label: LABEL_OPTIONAL
type: TYPE_MESSAGE
type_name: ".tensorflow.GraphDef"
}
field {
name: "post_optimization_graph"
number: 3
label: LABEL_OPTIONAL
type: TYPE_MESSAGE
type_name: ".tensorflow.GraphDef"
}
}
}
}