Function: get_dataset_buffer
C Prototype |
aclDataBuffer* aclmdlGetDatasetBuffer(const aclmdlDataset *dataset, size_t index) |
|---|---|
Python Function |
data_buffer = acl.mdl.get_dataset_buffer(dataset, index) |
Function Usage |
Obtains the nth aclDataBuffer in aclmdlDataset. |
Input Description |
dataset: int, pointer address of the aclmdlDataset data object. Call acl.mdl.create_dataset to create data of the aclmdlDataset type in advance. index: int, sequence number of the aclDataBuffer to be obtained. |
Return Value |
data_buffer: int, pointer address of the aclDataBuffer data object.
|
Restrictions |
None |
Parent topic: aclmdlDataset