org.tensorflow.framework.MemoryLogRawDeallocationOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: log_memory.proto
package org.tensorflow.framework;
public interface MemoryLogRawDeallocationOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.MemoryLogRawDeallocation)
com.google.protobuf.MessageOrBuilder {
/**
*
* Process-unique step id.
*
*
* optional int64 step_id = 1;
*/
long getStepId();
/**
*
* Name of the operation making the deallocation.
*
*
* optional string operation = 2;
*/
java.lang.String getOperation();
/**
*
* Name of the operation making the deallocation.
*
*
* optional string operation = 2;
*/
com.google.protobuf.ByteString
getOperationBytes();
/**
*
* Id of the tensor buffer being deallocated, used to match to a
* corresponding allocation.
*
*
* optional int64 allocation_id = 3;
*/
long getAllocationId();
/**
*
* Name of the allocator used.
*
*
* optional string allocator_name = 4;
*/
java.lang.String getAllocatorName();
/**
*
* Name of the allocator used.
*
*
* optional string allocator_name = 4;
*/
com.google.protobuf.ByteString
getAllocatorNameBytes();
/**
*
* True if the deallocation is queued and will be performed later,
* e.g. for GPU lazy freeing of buffers.
*
*
* optional bool deferred = 5;
*/
boolean getDeferred();
}