GraphDebugInfo

パブリック最終クラスGraphDebugInfo

Protobuf 型tensorflow.GraphDebugInfo

ネストされたクラス

クラスグラフデバッグ情報ビルダーProtobuf 型tensorflow.GraphDebugInfo
クラスGraphDebugInfo.FileLineCol
 This represents a file/line location in the source code. 
インターフェースGraphDebugInfo.FileLineColOrBuilder
クラスグラフデバッグ情報.スタックトレース
 This represents a stack trace which is a ordered list of `FileLineCol`. 
インターフェースGraphDebugInfo.StackTraceOrBuilder

定数

整数FILES_FIELD_NUMBER
整数TRACES_FIELD_NUMBER

パブリックメソッド

ブール値
containsTraces (文字列キー)
 This maps a node name to a stack trace in the source code.
ブール値
等しい(オブジェクトオブジェクト)
静的GraphDebugInfo
グラフデバッグ情報
最終的な静的 com.google.protobuf.Descriptors.Descriptor
getFiles (int インデックス)
 This stores all the source code file names and can be indexed by the
 `file_index`.
com.google.protobuf.ByteString
getFilesBytes (int インデックス)
 This stores all the source code file names and can be indexed by the
 `file_index`.
整数
getFilesCount ()
 This stores all the source code file names and can be indexed by the
 `file_index`.
com.google.protobuf.ProtocolStringList
getFilesList ()
 This stores all the source code file names and can be indexed by the
 `file_index`.
整数
Map<String, GraphDebugInfo.StackTrace >
getTraces ()
代わりにgetTracesMap()を使用してください。
整数
getTracesCount ()
 This maps a node name to a stack trace in the source code.
Map<String, GraphDebugInfo.StackTrace >
getTracesMap ()
 This maps a node name to a stack trace in the source code.
グラフデバッグ情報.スタックトレース
getTracesOrDefault (文字列キー、 GraphDebugInfo.StackTrace defaultValue)
 This maps a node name to a stack trace in the source code.
グラフデバッグ情報.スタックトレース
getTracesOrThrow (文字列キー)
 This maps a node name to a stack trace in the source code.
最終的な com.google.protobuf.UnknownFieldSet
整数
最終ブール値
静的GraphDebugInfo.Builder
newBuilder ( GraphDebugInfoプロトタイプ)
静的GraphDebugInfo.Builder
グラフデバッグ情報ビルダー
静的GraphDebugInfo
parseDelimitedFrom (InputStream 入力)
静的GraphDebugInfo
parseDelimitedFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的GraphDebugInfo
parseFrom (ByteBuffer データ)
静的GraphDebugInfo
parseFrom (com.google.protobuf.CodedInputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的GraphDebugInfo
parseFrom (ByteBuffer データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的GraphDebugInfo
parseFrom (com.google.protobuf.CodedInputStream 入力)
静的GraphDebugInfo
parseFrom (byte[] データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的GraphDebugInfo
parseFrom (com.google.protobuf.ByteString データ)
静的GraphDebugInfo
parseFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的GraphDebugInfo
parseFrom (com.google.protobuf.ByteString データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的
グラフデバッグ情報ビルダー
空所
writeTo (com.google.protobuf.CodedOutputStream 出力)

継承されたメソッド

定数

パブリック静的最終整数FILES_FIELD_NUMBER

定数値: 1

パブリック静的最終整数TRACES_FIELD_NUMBER

定数値: 2

パブリックメソッド

public boolean containsTraces (文字列キー)

 This maps a node name to a stack trace in the source code.
 The map key is a mangling of the containing function and op name with
 syntax:
   op.name '@' func_name
 For ops in the top-level graph, the func_name is the empty string.
 Note that op names are restricted to a small number of characters which
 exclude '@', making it impossible to collide keys of this form. Function
 names accept a much wider set of characters.
 It would be preferable to avoid mangling and use a tuple key of (op.name,
 func_name), but this is not supported with protocol buffers.
 
map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;

public booleanに等しい(オブジェクト obj)

public static GraphDebugInfo getDefaultInstance ()

public GraphDebugInfo getDefaultInstanceForType ()

public static Final com.google.protobuf.Descriptors.Descriptor getDescriptor ()

public String getFiles (int インデックス)

 This stores all the source code file names and can be indexed by the
 `file_index`.
 
repeated string files = 1;

public com.google.protobuf.ByteString getFilesBytes (int インデックス)

 This stores all the source code file names and can be indexed by the
 `file_index`.
 
repeated string files = 1;

public int getFilesCount ()

 This stores all the source code file names and can be indexed by the
 `file_index`.
 
repeated string files = 1;

public com.google.protobuf.ProtocolStringList getFilesList ()

 This stores all the source code file names and can be indexed by the
 `file_index`.
 
repeated string files = 1;

公共getParserForType ()

public int getSerializedSize ()

public Map<String, GraphDebugInfo.StackTrace > getTraces ()

代わりにgetTracesMap()を使用してください。

public int getTracesCount ()

 This maps a node name to a stack trace in the source code.
 The map key is a mangling of the containing function and op name with
 syntax:
   op.name '@' func_name
 For ops in the top-level graph, the func_name is the empty string.
 Note that op names are restricted to a small number of characters which
 exclude '@', making it impossible to collide keys of this form. Function
 names accept a much wider set of characters.
 It would be preferable to avoid mangling and use a tuple key of (op.name,
 func_name), but this is not supported with protocol buffers.
 
map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;

public Map<String, GraphDebugInfo.StackTrace > getTracesMap ()

 This maps a node name to a stack trace in the source code.
 The map key is a mangling of the containing function and op name with
 syntax:
   op.name '@' func_name
 For ops in the top-level graph, the func_name is the empty string.
 Note that op names are restricted to a small number of characters which
 exclude '@', making it impossible to collide keys of this form. Function
 names accept a much wider set of characters.
 It would be preferable to avoid mangling and use a tuple key of (op.name,
 func_name), but this is not supported with protocol buffers.
 
map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;

public GraphDebugInfo.StackTrace getTracesOrDefault (文字列キー、 GraphDebugInfo.StackTrace defaultValue)

 This maps a node name to a stack trace in the source code.
 The map key is a mangling of the containing function and op name with
 syntax:
   op.name '@' func_name
 For ops in the top-level graph, the func_name is the empty string.
 Note that op names are restricted to a small number of characters which
 exclude '@', making it impossible to collide keys of this form. Function
 names accept a much wider set of characters.
 It would be preferable to avoid mangling and use a tuple key of (op.name,
 func_name), but this is not supported with protocol buffers.
 
map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;

public GraphDebugInfo.StackTrace getTracesOrThrow (文字列キー)

 This maps a node name to a stack trace in the source code.
 The map key is a mangling of the containing function and op name with
 syntax:
   op.name '@' func_name
 For ops in the top-level graph, the func_name is the empty string.
 Note that op names are restricted to a small number of characters which
 exclude '@', making it impossible to collide keys of this form. Function
 names accept a much wider set of characters.
 It would be preferable to avoid mangling and use a tuple key of (op.name,
 func_name), but this is not supported with protocol buffers.
 
map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;

public Final com.google.protobuf.UnknownFieldSet getUnknownFields ()

public int hashCode ()

パブリック最終ブール値isInitialized ()

public static GraphDebugInfo.Builder newBuilder ( GraphDebugInfoプロトタイプ)

public static GraphDebugInfo.Builder newBuilder ()

public GraphDebugInfo.Builder newBuilderForType ()

public static GraphDebugInfo parseDelimitedFrom (InputStream 入力)

投げる
IO例外

public static GraphDebugInfo parseDelimitedFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
IO例外

public static GraphDebugInfo parseFrom (ByteBuffer データ)

投げる
無効なプロトコルバッファ例外

public static GraphDebugInfo parseFrom (com.google.protobuf.CodedInputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
IO例外

public static GraphDebugInfo parseFrom (ByteBuffer データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
無効なプロトコルバッファ例外

public static GraphDebugInfo parseFrom (com.google.protobuf.CodedInputStream 入力)

投げる
IO例外

public static GraphDebugInfo parseFrom (byte[] データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
無効なプロトコルバッファ例外

public static GraphDebugInfo parseFrom (com.google.protobuf.ByteString データ)

投げる
無効なプロトコルバッファ例外

public static GraphDebugInfo parseFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
IO例外

public static GraphDebugInfo parseFrom (com.google.protobuf.ByteString データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
無効なプロトコルバッファ例外

パブリック静的パーサー()

public GraphDebugInfo.Builder toBuilder ()

public void writeTo (com.google.protobuf.CodedOutputStream 出力)

投げる
IO例外