org.tensorflow.framework.ResourceHandleProtoOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/framework/resource_handle.proto
package org.tensorflow.framework;
public interface ResourceHandleProtoOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.ResourceHandleProto)
org.nd4j.shade.protobuf.MessageOrBuilder {
/**
*
* Unique name for the device containing the resource.
*
*
* string device = 1;
*/
java.lang.String getDevice();
/**
*
* Unique name for the device containing the resource.
*
*
* string device = 1;
*/
org.nd4j.shade.protobuf.ByteString
getDeviceBytes();
/**
*
* Container in which this resource is placed.
*
*
* string container = 2;
*/
java.lang.String getContainer();
/**
*
* Container in which this resource is placed.
*
*
* string container = 2;
*/
org.nd4j.shade.protobuf.ByteString
getContainerBytes();
/**
*
* Unique name of this resource.
*
*
* string name = 3;
*/
java.lang.String getName();
/**
*
* Unique name of this resource.
*
*
* string name = 3;
*/
org.nd4j.shade.protobuf.ByteString
getNameBytes();
/**
*
* Hash code for the type of the resource. Is only valid in the same device
* and in the same execution.
*
*
* uint64 hash_code = 4;
*/
long getHashCode();
/**
*
* For debug-only, the name of the type pointed to by this handle, if
* available.
*
*
* string maybe_type_name = 5;
*/
java.lang.String getMaybeTypeName();
/**
*
* For debug-only, the name of the type pointed to by this handle, if
* available.
*
*
* string maybe_type_name = 5;
*/
org.nd4j.shade.protobuf.ByteString
getMaybeTypeNameBytes();
}