Open3D (C++ API)
0.12.0
|
The common header of DLPack. More...
#include <stddef.h>
#include <stdint.h>
Go to the source code of this file.
Data Structures | |
struct | DLContext |
A Device context for Tensor and operator. More... | |
struct | DLDataType |
The data type the tensor can hold. More... | |
struct | DLTensor |
Plain C Tensor object, does not manage memory. More... | |
struct | DLManagedTensor |
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... | |
Macros | |
#define | DLPACK_EXTERN_C |
#define | DLPACK_VERSION 020 |
The current version of dlpack. More... | |
#define | DLPACK_DLL |
DLPACK_DLL prefix for windows. More... | |
Typedefs | |
typedef struct DLManagedTensor | DLManagedTensor |
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... | |
Enumerations | |
enum | DLDeviceType { kDLCPU = 1, kDLGPU = 2, kDLCPUPinned = 3, kDLOpenCL = 4, kDLVulkan = 7, kDLMetal = 8, kDLVPI = 9, kDLROCM = 10, kDLExtDev = 12 } |
The device type in DLContext. More... | |
enum | DLDataTypeCode { kDLInt = 0U, kDLUInt = 1U, kDLFloat = 2U, kDLBfloat = 4U } |
The type code options DLDataType. More... | |
The common header of DLPack.
Copyright (c) 2017 by Contributors
#define DLPACK_DLL |
DLPACK_DLL prefix for windows.
#define DLPACK_EXTERN_C |
#define DLPACK_VERSION 020 |
The current version of dlpack.
typedef struct DLManagedTensor DLManagedTensor |
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.
enum DLDataTypeCode |
The type code options DLDataType.
Enumerator | |
---|---|
kDLInt | |
kDLUInt | |
kDLFloat | |
kDLBfloat |
enum DLDeviceType |
The device type in DLContext.