public interface
MemoryLogRawDeallocationOrBuilder
Known Indirect Subclasses |
Public Methods
abstract long |
getAllocationId()
Id of the tensor buffer being deallocated, used to match to a corresponding allocation. |
abstract String |
getAllocatorName()
Name of the allocator used. |
abstract com.google.protobuf.ByteString |
getAllocatorNameBytes()
Name of the allocator used. |
abstract boolean |
getDeferred()
True if the deallocation is queued and will be performed later, e.g. |
abstract String |
getOperation()
Name of the operation making the deallocation. |
abstract com.google.protobuf.ByteString |
getOperationBytes()
Name of the operation making the deallocation. |
abstract long |
getStepId()
Process-unique step id. |
Public Methods
public abstract long getAllocationId ()
Id of the tensor buffer being deallocated, used to match to a corresponding allocation.
int64 allocation_id = 3;
public abstract String getAllocatorName ()
Name of the allocator used.
string allocator_name = 4;
public abstract com.google.protobuf.ByteString getAllocatorNameBytes ()
Name of the allocator used.
string allocator_name = 4;
public abstract boolean getDeferred ()
True if the deallocation is queued and will be performed later, e.g. for GPU lazy freeing of buffers.
bool deferred = 5;
public abstract String getOperation ()
Name of the operation making the deallocation.
string operation = 2;
public abstract com.google.protobuf.ByteString getOperationBytes ()
Name of the operation making the deallocation.
string operation = 2;
public abstract long getStepId ()
Process-unique step id.
int64 step_id = 1;