org.tensorflow.framework.AllocationDescriptionOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/framework/allocation_description.proto
package org.tensorflow.framework;
public interface AllocationDescriptionOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.AllocationDescription)
org.nd4j.shade.protobuf.MessageOrBuilder {
/**
*
* Total number of bytes requested
*
*
* int64 requested_bytes = 1;
*/
long getRequestedBytes();
/**
*
* Total number of bytes allocated if known
*
*
* int64 allocated_bytes = 2;
*/
long getAllocatedBytes();
/**
*
* Name of the allocator used
*
*
* string allocator_name = 3;
*/
java.lang.String getAllocatorName();
/**
*
* Name of the allocator used
*
*
* string allocator_name = 3;
*/
org.nd4j.shade.protobuf.ByteString
getAllocatorNameBytes();
/**
*
* Identifier of the allocated buffer if known
*
*
* int64 allocation_id = 4;
*/
long getAllocationId();
/**
*
* Set if this tensor only has one remaining reference
*
*
* bool has_single_reference = 5;
*/
boolean getHasSingleReference();
/**
*
* Address of the allocation.
*
*
* uint64 ptr = 6;
*/
long getPtr();
}