org.tensorflow.framework.GraphDebugInfoOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto Show documentation
Show all versions of proto Show documentation
Java API for TensorFlow protocol buffers.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/protobuf/graph_debug_info.proto
package org.tensorflow.framework;
public interface GraphDebugInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.GraphDebugInfo)
com.google.protobuf.MessageOrBuilder {
/**
*
* This stores all the source code file names and can be indexed by the
* `file_index`.
*
*
* repeated string files = 1;
*/
java.util.List
getFilesList();
/**
*
* 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;
*/
java.lang.String getFiles(int index);
/**
*
* 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 index);
/**
*
* This maps a node name to a stack trace in the source code.
*
*
* map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;
*/
int getTracesCount();
/**
*
* This maps a node name to a stack trace in the source code.
*
*
* map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;
*/
boolean containsTraces(
java.lang.String key);
/**
* Use {@link #getTracesMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getTraces();
/**
*
* This maps a node name to a stack trace in the source code.
*
*
* map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;
*/
java.util.Map
getTracesMap();
/**
*
* This maps a node name to a stack trace in the source code.
*
*
* map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;
*/
org.tensorflow.framework.GraphDebugInfo.StackTrace getTracesOrDefault(
java.lang.String key,
org.tensorflow.framework.GraphDebugInfo.StackTrace defaultValue);
/**
*
* This maps a node name to a stack trace in the source code.
*
*
* map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;
*/
org.tensorflow.framework.GraphDebugInfo.StackTrace getTracesOrThrow(
java.lang.String key);
}