org.tensorflow.distruntime.RecvTensorResponseOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/protobuf/worker.proto
package org.tensorflow.distruntime;
public interface RecvTensorResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.RecvTensorResponse)
org.nd4j.shade.protobuf.MessageOrBuilder {
/**
*
* The tensor as a proto.
*
*
* .tensorflow.TensorProto tensor = 1;
*/
boolean hasTensor();
/**
*
* The tensor as a proto.
*
*
* .tensorflow.TensorProto tensor = 1;
*/
org.tensorflow.framework.TensorProto getTensor();
/**
*
* The tensor as a proto.
*
*
* .tensorflow.TensorProto tensor = 1;
*/
org.tensorflow.framework.TensorProtoOrBuilder getTensorOrBuilder();
/**
*
* If true, this tensor was the output of a dead node, and the
* content is invalid.
*
*
* bool is_dead = 2;
*/
boolean getIsDead();
/**
*
* The time at which tensor was available and started to be returned.
*
*
* int64 send_start_micros = 3;
*/
long getSendStartMicros();
/**
*
* Optional additional information about how to receive the tensor,
* e.g. in the event that `RecvTensorRequest.dma_ok` was true.
*
*
* .google.protobuf.Any transport_options = 4;
*/
boolean hasTransportOptions();
/**
*
* Optional additional information about how to receive the tensor,
* e.g. in the event that `RecvTensorRequest.dma_ok` was true.
*
*
* .google.protobuf.Any transport_options = 4;
*/
org.nd4j.shade.protobuf.Any getTransportOptions();
/**
*
* Optional additional information about how to receive the tensor,
* e.g. in the event that `RecvTensorRequest.dma_ok` was true.
*
*
* .google.protobuf.Any transport_options = 4;
*/
org.nd4j.shade.protobuf.AnyOrBuilder getTransportOptionsOrBuilder();
}