공개 최종 클래스 GraphDebugInfo
Protobuf 유형 tensorflow.GraphDebugInfo
중첩 클래스
수업 | GraphDebugInfo.Builder | Protobuf 유형 tensorflow.GraphDebugInfo | |
수업 | GraphDebugInfo.FileLineCol | This represents a file/line location in the source code. | |
인터페이스 | GraphDebugInfo.FileLineColOrBuilder | ||
수업 | GraphDebugInfo.StackTrace | This represents a stack trace which is a ordered list of `FileLineCol`. | |
인터페이스 | GraphDebugInfo.StackTraceOrBuilder |
상수
정수 | FILES_FIELD_NUMBER | |
정수 | TRACES_FIELD_NUMBER |
공개 방법
부울 | containTraces (문자열 키) This maps a node name to a stack trace in the source code. |
부울 | 같음 (객체 객체) |
정적 GraphDebugInfo | |
그래프디버그정보 | |
최종 정적 com.google.protobuf.Descriptors.Descriptor | |
끈 | getFiles (정수 인덱스) This stores all the source code file names and can be indexed by the `file_index`. |
com.google.protobuf.ByteString | getFilesBytes (정수 인덱스) 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`. |
정수 | |
맵<String, GraphDebugInfo.StackTrace > | getTrace () 대신 getTracesMap() 사용하세요. |
정수 | getTracesCount () This maps a node name to a stack trace in the source code. |
맵<String, GraphDebugInfo.StackTrace > | getTracesMap () This maps a node name to a stack trace in the source code. |
GraphDebugInfo.StackTrace | getTracesOrDefault (문자열 키, GraphDebugInfo.StackTrace defaultValue) This maps a node name to a stack trace in the source code. |
GraphDebugInfo.StackTrace | 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.Builder | |
정적 GraphDebugInfo | parsDelimitedFrom (InputStream 입력) |
정적 GraphDebugInfo | parseDelimitedFrom (InputStream 입력, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry) |
정적 GraphDebugInfo | parsFrom (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 확장Registry) |
정적 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) |
공전 | 파서 () |
GraphDebugInfo.Builder | toBuilder () |
무효의 | writeTo (com.google.protobuf.CodedOutputStream 출력) |
상속된 메서드
상수
공개 정적 최종 int FILES_FIELD_NUMBER
상수값: 1
공개 정적 최종 int TRACES_FIELD_NUMBER
상수값: 2
공개 방법
공개 부울 containTraces (문자열 키)
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;
공개 부울은 (객체 obj) 와 같습니다 .
공개 정적 최종 com.google.protobuf.Descriptors.Descriptor getDescriptor ()
공개 문자열 getFiles (int 인덱스)
This stores all the source code file names and can be indexed by the `file_index`.
repeated string files = 1;
공개 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;
공개 int getFilesCount ()
This stores all the source code file names and can be indexed by the `file_index`.
repeated string files = 1;
공개 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 ()
공개 int getSerializedSize ()
공개 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;
공개 맵<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;
공개 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;
공개 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;
공개 최종 com.google.protobuf.UnknownFieldSet getUnknownFields ()
공개 int hashCode ()
공개 최종 부울 isInitialized ()
공개 정적 GraphDebugInfoparseDelimitedFrom ( InputStream 입력, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
던지기
IO예외 |
---|
공개 정적 GraphDebugInfo 구문 분석 (com.google.protobuf.CodedInputStream 입력, com.google.protobuf.ExtensionRegistryLite 확장 레지스트리)
던지기
IO예외 |
---|
공개 정적 GraphDebugInfo 구문 분석 (ByteBuffer 데이터, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
던지기
잘못된프로토콜버퍼예외 |
---|
공개 정적 GraphDebugInfo 구문 분석 (byte[] 데이터, com.google.protobuf.ExtensionRegistryLite 확장Registry)
던지기
잘못된프로토콜버퍼예외 |
---|
공개 정적 GraphDebugInfo 구문 분석 (InputStream 입력, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
던지기
IO예외 |
---|
공개 정적 GraphDebugInfo 구문 분석기 (com.google.protobuf.ByteString 데이터, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry)
던지기
잘못된프로토콜버퍼예외 |
---|
공개 정적 파서 ()
공개 무효 writeTo (com.google.protobuf.CodedOutputStream 출력)
던지기
IO예외 |
---|