ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
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:

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 - this should be called to destruct the manager_ctx which backs the DLManagedTensor. It can be NULL if there is no way for the caller to provide a reasonable destructor. The destructor 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.

Note
This data structure is used as Legacy DLManagedTensor in DLPack exchange and is deprecated after DLPack v0.8 Use DLManagedTensorVersioned instead. This data structure may get renamed or deleted in future versions.
See also
DLManagedTensorVersioned

Definition at line 319 of file DLPack.h.

Member Data Documentation

◆ deleter

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

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

Definition at line 332 of file DLPack.h.

Referenced by cloudViewer::core::pybind_core_tensor().

◆ dl_tensor

DLTensor DLManagedTensor::dl_tensor

DLTensor which is being memory managed.

Definition at line 321 of file DLPack.h.

◆ manager_ctx

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.

Definition at line 325 of file DLPack.h.


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