org.tensorflow.framework.DeviceStepStatsOrBuilder 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/framework/step_stats.proto
package org.tensorflow.framework;
public interface DeviceStepStatsOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.DeviceStepStats)
com.google.protobuf.MessageOrBuilder {
/**
* string device = 1;
*/
java.lang.String getDevice();
/**
* string device = 1;
*/
com.google.protobuf.ByteString
getDeviceBytes();
/**
* repeated .tensorflow.NodeExecStats node_stats = 2;
*/
java.util.List
getNodeStatsList();
/**
* repeated .tensorflow.NodeExecStats node_stats = 2;
*/
org.tensorflow.framework.NodeExecStats getNodeStats(int index);
/**
* repeated .tensorflow.NodeExecStats node_stats = 2;
*/
int getNodeStatsCount();
/**
* repeated .tensorflow.NodeExecStats node_stats = 2;
*/
java.util.List extends org.tensorflow.framework.NodeExecStatsOrBuilder>
getNodeStatsOrBuilderList();
/**
* repeated .tensorflow.NodeExecStats node_stats = 2;
*/
org.tensorflow.framework.NodeExecStatsOrBuilder getNodeStatsOrBuilder(
int index);
/**
*
* Its key is thread id.
*
*
* map<uint32, string> thread_names = 3;
*/
int getThreadNamesCount();
/**
*
* Its key is thread id.
*
*
* map<uint32, string> thread_names = 3;
*/
boolean containsThreadNames(
int key);
/**
* Use {@link #getThreadNamesMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getThreadNames();
/**
*
* Its key is thread id.
*
*
* map<uint32, string> thread_names = 3;
*/
java.util.Map
getThreadNamesMap();
/**
*
* Its key is thread id.
*
*
* map<uint32, string> thread_names = 3;
*/
java.lang.String getThreadNamesOrDefault(
int key,
java.lang.String defaultValue);
/**
*
* Its key is thread id.
*
*
* map<uint32, string> thread_names = 3;
*/
java.lang.String getThreadNamesOrThrow(
int key);
}