org.tensorflow.framework.AllocationDescriptionOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto Show documentation
Show all versions of proto Show documentation
Java API for TensorFlow protocol buffers.
// 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)
com.google.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;
*/
com.google.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();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy