org.tensorflow.distruntime.PartialRunSetupRequestOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/protobuf/master.proto
package org.tensorflow.distruntime;
public interface PartialRunSetupRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.PartialRunSetupRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* REQUIRED: session_handle must be returned by a CreateSession call
* to the same master service.
*
*
* string session_handle = 1;
*/
java.lang.String getSessionHandle();
/**
*
* REQUIRED: session_handle must be returned by a CreateSession call
* to the same master service.
*
*
* string session_handle = 1;
*/
com.google.protobuf.ByteString
getSessionHandleBytes();
/**
*
* Tensors to be fed in future steps.
*
*
* repeated string feed = 2;
*/
java.util.List
getFeedList();
/**
*
* Tensors to be fed in future steps.
*
*
* repeated string feed = 2;
*/
int getFeedCount();
/**
*
* Tensors to be fed in future steps.
*
*
* repeated string feed = 2;
*/
java.lang.String getFeed(int index);
/**
*
* Tensors to be fed in future steps.
*
*
* repeated string feed = 2;
*/
com.google.protobuf.ByteString
getFeedBytes(int index);
/**
*
* Fetches. A list of tensor names. The caller expects a tensor to be returned
* for each fetch[i] (see RunStepResponse.tensor), for corresponding partial
* RunStepRequests. The order of specified fetches does not change the
* execution order.
*
*
* repeated string fetch = 3;
*/
java.util.List
getFetchList();
/**
*
* Fetches. A list of tensor names. The caller expects a tensor to be returned
* for each fetch[i] (see RunStepResponse.tensor), for corresponding partial
* RunStepRequests. The order of specified fetches does not change the
* execution order.
*
*
* repeated string fetch = 3;
*/
int getFetchCount();
/**
*
* Fetches. A list of tensor names. The caller expects a tensor to be returned
* for each fetch[i] (see RunStepResponse.tensor), for corresponding partial
* RunStepRequests. The order of specified fetches does not change the
* execution order.
*
*
* repeated string fetch = 3;
*/
java.lang.String getFetch(int index);
/**
*
* Fetches. A list of tensor names. The caller expects a tensor to be returned
* for each fetch[i] (see RunStepResponse.tensor), for corresponding partial
* RunStepRequests. The order of specified fetches does not change the
* execution order.
*
*
* repeated string fetch = 3;
*/
com.google.protobuf.ByteString
getFetchBytes(int index);
/**
*
* Target Nodes. A list of node names. The named nodes will be run in future
* steps, but their outputs will not be fetched.
*
*
* repeated string target = 4;
*/
java.util.List
getTargetList();
/**
*
* Target Nodes. A list of node names. The named nodes will be run in future
* steps, but their outputs will not be fetched.
*
*
* repeated string target = 4;
*/
int getTargetCount();
/**
*
* Target Nodes. A list of node names. The named nodes will be run in future
* steps, but their outputs will not be fetched.
*
*
* repeated string target = 4;
*/
java.lang.String getTarget(int index);
/**
*
* Target Nodes. A list of node names. The named nodes will be run in future
* steps, but their outputs will not be fetched.
*
*
* repeated string target = 4;
*/
com.google.protobuf.ByteString
getTargetBytes(int index);
}