PandA-2024.02
Data Fields
DLManagedTensor Struct Reference

C Tensor object, manage memory of DLTensor. This data structure is intended to faciliate 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
[legend]

Data Fields

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. More...
 

Detailed Description

C Tensor object, manage memory of DLTensor. This data structure is intended to faciliate 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.

Definition at line 156 of file dlpack.h.

Field Documentation

◆ deleter

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.

Definition at line 167 of file dlpack.h.

◆ dl_tensor

DLTensor DLManagedTensor::dl_tensor

DLTensor which is being memory managed.

Definition at line 158 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 162 of file dlpack.h.


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

Generated on Mon Feb 12 2024 13:03:50 for PandA-2024.02 by doxygen 1.8.13