org.tensorflow.framework.MemoryLogRawAllocationOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: log_memory.proto
package org.tensorflow.framework;
public interface MemoryLogRawAllocationOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.MemoryLogRawAllocation)
com.google.protobuf.MessageOrBuilder {
/**
*
* Process-unique step id.
*
*
* optional int64 step_id = 1;
*/
long getStepId();
/**
*
* Name of the operation making the allocation.
*
*
* optional string operation = 2;
*/
java.lang.String getOperation();
/**
*
* Name of the operation making the allocation.
*
*
* optional string operation = 2;
*/
com.google.protobuf.ByteString
getOperationBytes();
/**
*
* Number of bytes in the allocation.
*
*
* optional int64 num_bytes = 3;
*/
long getNumBytes();
/**
*
* Address of the allocation.
*
*
* optional uint64 ptr = 4;
*/
long getPtr();
/**
*
* Id of the tensor buffer being allocated, used to match to a
* corresponding deallocation.
*
*
* optional int64 allocation_id = 5;
*/
long getAllocationId();
/**
*
* Name of the allocator used.
*
*
* optional string allocator_name = 6;
*/
java.lang.String getAllocatorName();
/**
*
* Name of the allocator used.
*
*
* optional string allocator_name = 6;
*/
com.google.protobuf.ByteString
getAllocatorNameBytes();
}