Function: get_input_format
Applicability
Product |
Supported (√/x) |
|---|---|
√ |
|
√ |
|
√ |
|
√ |
|
√ |
Function Usage
Obtains the input format of a model based on the model description.
Prototype
- C Prototype
1aclFormat aclmdlGetInputFormat(const aclmdlDesc *modelDesc, size_t index)
- Python Function
1format_info = acl.mdl.get_input_format(model_desc, index)
Parameter Description
Parameter |
Description |
|---|---|
model_desc |
Int, pointer address of the data of the aclmdlDesc type. Call acl.mdl.create_desc to create data of the aclmdlDesc type in advance. |
index |
Int, sequence number of the input to obtain, indexed starting at 0 |
Return Value Description
Return Value |
Description |
|---|---|
format_info |
Int, format of the specified input. For details, see aclFormat. |
Parent topic: aclmdlDesc