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