mxnet
Public Attributes | List of all members
DLManagedTensor Struct Reference

C Tensor object, manage memory of DLTensor. This data structure is intended to facilitate the borrowing of DLTensor by another framework. It is not meant to transfer the tensor. When the borrowing framework doesn't need the tensor, it should call the deleter to notify the host that the resource is no longer needed. More...

#include <dlpack.h>

Collaboration diagram for DLManagedTensor:
Collaboration graph

Public Attributes

DLTensor dl_tensor
 DLTensor which is being memory managed. More...
 
void * manager_ctx
 the context of the original host framework of DLManagedTensor in which DLManagedTensor is used in the framework. It can also be NULL. More...
 
void(* deleter )(struct DLManagedTensor *self)
 Destructor signature void (*)(void*) - this should be called to destruct manager_ctx which holds the DLManagedTensor. It can be NULL if there is no way for the caller to provide a reasonable destructor. The destructors deletes the argument self as well. More...
 

Detailed Description

C Tensor object, manage memory of DLTensor. This data structure is intended to facilitate the borrowing of DLTensor by another framework. It is not meant to transfer the tensor. When the borrowing framework doesn't need the tensor, it should call the deleter to notify the host that the resource is no longer needed.

Member Data Documentation

void(* DLManagedTensor::deleter) (struct DLManagedTensor *self)

Destructor signature void (*)(void*) - this should be called to destruct manager_ctx which holds the DLManagedTensor. It can be NULL if there is no way for the caller to provide a reasonable destructor. The destructors deletes the argument self as well.

DLTensor DLManagedTensor::dl_tensor

DLTensor which is being memory managed.

void* DLManagedTensor::manager_ctx

the context of the original host framework of DLManagedTensor in which DLManagedTensor is used in the framework. It can also be NULL.


The documentation for this struct was generated from the following file: