Interface DebuggedGraphOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    DebuggedGraph, DebuggedGraph.Builder

    public interface DebuggedGraphOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getGraphId()
      An ID for the graph.
      com.google.protobuf.ByteString getGraphIdBytes()
      An ID for the graph.
      java.lang.String getGraphName()
      Name of the graph (if available).
      com.google.protobuf.ByteString getGraphNameBytes()
      Name of the graph (if available).
      com.google.protobuf.ByteString getInstrumentedGraphDef()
      An encoded version of a GraphDef.
      java.lang.String getInstrumentedOps​(int index)
      Names of the instrumented ops.
      com.google.protobuf.ByteString getInstrumentedOpsBytes​(int index)
      Names of the instrumented ops.
      int getInstrumentedOpsCount()
      Names of the instrumented ops.
      java.util.List<java.lang.String> getInstrumentedOpsList()
      Names of the instrumented ops.
      com.google.protobuf.ByteString getOriginalGraphDef()
      Original (uninstrumented) GraphDef (if available).
      java.lang.String getOuterContextId()
      IDs of the immediate enclosing context (graph), if any.
      com.google.protobuf.ByteString getOuterContextIdBytes()
      IDs of the immediate enclosing context (graph), if any.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getGraphId

        java.lang.String getGraphId()
         An ID for the graph.
         This can be used up to look up graph names. Generated by the debugger.
         
        string graph_id = 1;
        Returns:
        The graphId.
      • getGraphIdBytes

        com.google.protobuf.ByteString getGraphIdBytes()
         An ID for the graph.
         This can be used up to look up graph names. Generated by the debugger.
         
        string graph_id = 1;
        Returns:
        The bytes for graphId.
      • getGraphName

        java.lang.String getGraphName()
         Name of the graph (if available).
         
        string graph_name = 2;
        Returns:
        The graphName.
      • getGraphNameBytes

        com.google.protobuf.ByteString getGraphNameBytes()
         Name of the graph (if available).
         
        string graph_name = 2;
        Returns:
        The bytes for graphName.
      • getInstrumentedOpsList

        java.util.List<java.lang.String> getInstrumentedOpsList()
         Names of the instrumented ops. This can be used to look up op name
         based on the numeric-summary tensors (2nd column).
         
        repeated string instrumented_ops = 3;
        Returns:
        A list containing the instrumentedOps.
      • getInstrumentedOpsCount

        int getInstrumentedOpsCount()
         Names of the instrumented ops. This can be used to look up op name
         based on the numeric-summary tensors (2nd column).
         
        repeated string instrumented_ops = 3;
        Returns:
        The count of instrumentedOps.
      • getInstrumentedOps

        java.lang.String getInstrumentedOps​(int index)
         Names of the instrumented ops. This can be used to look up op name
         based on the numeric-summary tensors (2nd column).
         
        repeated string instrumented_ops = 3;
        Parameters:
        index - The index of the element to return.
        Returns:
        The instrumentedOps at the given index.
      • getInstrumentedOpsBytes

        com.google.protobuf.ByteString getInstrumentedOpsBytes​(int index)
         Names of the instrumented ops. This can be used to look up op name
         based on the numeric-summary tensors (2nd column).
         
        repeated string instrumented_ops = 3;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the instrumentedOps at the given index.
      • getOriginalGraphDef

        com.google.protobuf.ByteString getOriginalGraphDef()
         Original (uninstrumented) GraphDef (if available).
         
        bytes original_graph_def = 4;
        Returns:
        The originalGraphDef.
      • getInstrumentedGraphDef

        com.google.protobuf.ByteString getInstrumentedGraphDef()
         An encoded version of a GraphDef.
         This graph may include the debugger-inserted ops.
         
        bytes instrumented_graph_def = 5;
        Returns:
        The instrumentedGraphDef.
      • getOuterContextId

        java.lang.String getOuterContextId()
         IDs of the immediate enclosing context (graph), if any.
         
        string outer_context_id = 6;
        Returns:
        The outerContextId.
      • getOuterContextIdBytes

        com.google.protobuf.ByteString getOuterContextIdBytes()
         IDs of the immediate enclosing context (graph), if any.
         
        string outer_context_id = 6;
        Returns:
        The bytes for outerContextId.