Package org.tensorflow.framework
Interface RunMetadataOrBuilder
-
- All Superinterfaces:
org.nd4j.shade.protobuf.MessageLiteOrBuilder,org.nd4j.shade.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RunMetadata,RunMetadata.Builder
public interface RunMetadataOrBuilder extends org.nd4j.shade.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CostGraphDefgetCostGraph()The cost graph for the computation defined by the run call.CostGraphDefOrBuildergetCostGraphOrBuilder()The cost graph for the computation defined by the run call.GraphDefgetPartitionGraphs(int index)Graphs of the partitions executed by executors.intgetPartitionGraphsCount()Graphs of the partitions executed by executors.List<GraphDef>getPartitionGraphsList()Graphs of the partitions executed by executors.GraphDefOrBuildergetPartitionGraphsOrBuilder(int index)Graphs of the partitions executed by executors.List<? extends GraphDefOrBuilder>getPartitionGraphsOrBuilderList()Graphs of the partitions executed by executors.StepStatsgetStepStats()Statistics traced for this step.StepStatsOrBuildergetStepStatsOrBuilder()Statistics traced for this step.booleanhasCostGraph()The cost graph for the computation defined by the run call.booleanhasStepStats()Statistics traced for this step.-
Methods inherited from interface org.nd4j.shade.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasStepStats
boolean hasStepStats()
Statistics traced for this step. Populated if tracing is turned on via the "RunOptions" proto. EXPERIMENTAL: The format and set of events may change in future versions.
.tensorflow.StepStats step_stats = 1;- Returns:
- Whether the stepStats field is set.
-
getStepStats
StepStats getStepStats()
Statistics traced for this step. Populated if tracing is turned on via the "RunOptions" proto. EXPERIMENTAL: The format and set of events may change in future versions.
.tensorflow.StepStats step_stats = 1;- Returns:
- The stepStats.
-
getStepStatsOrBuilder
StepStatsOrBuilder getStepStatsOrBuilder()
Statistics traced for this step. Populated if tracing is turned on via the "RunOptions" proto. EXPERIMENTAL: The format and set of events may change in future versions.
.tensorflow.StepStats step_stats = 1;
-
hasCostGraph
boolean hasCostGraph()
The cost graph for the computation defined by the run call.
.tensorflow.CostGraphDef cost_graph = 2;- Returns:
- Whether the costGraph field is set.
-
getCostGraph
CostGraphDef getCostGraph()
The cost graph for the computation defined by the run call.
.tensorflow.CostGraphDef cost_graph = 2;- Returns:
- The costGraph.
-
getCostGraphOrBuilder
CostGraphDefOrBuilder getCostGraphOrBuilder()
The cost graph for the computation defined by the run call.
.tensorflow.CostGraphDef cost_graph = 2;
-
getPartitionGraphsList
List<GraphDef> getPartitionGraphsList()
Graphs of the partitions executed by executors.
repeated .tensorflow.GraphDef partition_graphs = 3;
-
getPartitionGraphs
GraphDef getPartitionGraphs(int index)
Graphs of the partitions executed by executors.
repeated .tensorflow.GraphDef partition_graphs = 3;
-
getPartitionGraphsCount
int getPartitionGraphsCount()
Graphs of the partitions executed by executors.
repeated .tensorflow.GraphDef partition_graphs = 3;
-
getPartitionGraphsOrBuilderList
List<? extends GraphDefOrBuilder> getPartitionGraphsOrBuilderList()
Graphs of the partitions executed by executors.
repeated .tensorflow.GraphDef partition_graphs = 3;
-
getPartitionGraphsOrBuilder
GraphDefOrBuilder getPartitionGraphsOrBuilder(int index)
Graphs of the partitions executed by executors.
repeated .tensorflow.GraphDef partition_graphs = 3;
-
-