All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tensorflow.distruntime.RunGraphResponseOrBuilder Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: tensorflow/core/protobuf/worker.proto

package org.tensorflow.distruntime;

public interface RunGraphResponseOrBuilder extends
    // @@protoc_insertion_point(interface_extends:tensorflow.RunGraphResponse)
    org.nd4j.shade.protobuf.MessageOrBuilder {

  /**
   * 
   * A list of tensors corresponding to those requested by
   * `RunGraphRequest.recv_key`.
   * 
* * repeated .tensorflow.NamedTensorProto recv = 1; */ java.util.List getRecvList(); /** *
   * A list of tensors corresponding to those requested by
   * `RunGraphRequest.recv_key`.
   * 
* * repeated .tensorflow.NamedTensorProto recv = 1; */ org.tensorflow.framework.NamedTensorProto getRecv(int index); /** *
   * A list of tensors corresponding to those requested by
   * `RunGraphRequest.recv_key`.
   * 
* * repeated .tensorflow.NamedTensorProto recv = 1; */ int getRecvCount(); /** *
   * A list of tensors corresponding to those requested by
   * `RunGraphRequest.recv_key`.
   * 
* * repeated .tensorflow.NamedTensorProto recv = 1; */ java.util.List getRecvOrBuilderList(); /** *
   * A list of tensors corresponding to those requested by
   * `RunGraphRequest.recv_key`.
   * 
* * repeated .tensorflow.NamedTensorProto recv = 1; */ org.tensorflow.framework.NamedTensorProtoOrBuilder getRecvOrBuilder( int index); /** *
   * If the request asked for execution stats, the cost graph, or the partition
   * graphs, these are returned here.
   * TODO(suharshs): Package these in a RunMetadata instead.
   * 
* * .tensorflow.StepStats step_stats = 2; */ boolean hasStepStats(); /** *
   * If the request asked for execution stats, the cost graph, or the partition
   * graphs, these are returned here.
   * TODO(suharshs): Package these in a RunMetadata instead.
   * 
* * .tensorflow.StepStats step_stats = 2; */ org.tensorflow.framework.StepStats getStepStats(); /** *
   * If the request asked for execution stats, the cost graph, or the partition
   * graphs, these are returned here.
   * TODO(suharshs): Package these in a RunMetadata instead.
   * 
* * .tensorflow.StepStats step_stats = 2; */ org.tensorflow.framework.StepStatsOrBuilder getStepStatsOrBuilder(); /** * .tensorflow.CostGraphDef cost_graph = 3; */ boolean hasCostGraph(); /** * .tensorflow.CostGraphDef cost_graph = 3; */ org.tensorflow.framework.CostGraphDef getCostGraph(); /** * .tensorflow.CostGraphDef cost_graph = 3; */ org.tensorflow.framework.CostGraphDefOrBuilder getCostGraphOrBuilder(); /** * repeated .tensorflow.GraphDef partition_graph = 4; */ java.util.List getPartitionGraphList(); /** * repeated .tensorflow.GraphDef partition_graph = 4; */ org.tensorflow.framework.GraphDef getPartitionGraph(int index); /** * repeated .tensorflow.GraphDef partition_graph = 4; */ int getPartitionGraphCount(); /** * repeated .tensorflow.GraphDef partition_graph = 4; */ java.util.List getPartitionGraphOrBuilderList(); /** * repeated .tensorflow.GraphDef partition_graph = 4; */ org.tensorflow.framework.GraphDefOrBuilder getPartitionGraphOrBuilder( int index); /** *
   * If store_errors_in_response_body is true in the request, then
   * optionally the server may return an OK status for the RPC and
   * fill the true status into the fields below, to allow for messages
   * that are too long to fit in metadata.
   * 
* * .tensorflow.error.Code status_code = 5; */ int getStatusCodeValue(); /** *
   * If store_errors_in_response_body is true in the request, then
   * optionally the server may return an OK status for the RPC and
   * fill the true status into the fields below, to allow for messages
   * that are too long to fit in metadata.
   * 
* * .tensorflow.error.Code status_code = 5; */ org.tensorflow.framework.Code getStatusCode(); /** * string status_error_message = 6; */ java.lang.String getStatusErrorMessage(); /** * string status_error_message = 6; */ org.nd4j.shade.protobuf.ByteString getStatusErrorMessageBytes(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy