Function: get_op_desc_size
Applicability
|
Product |
Supported (√/x) |
|---|---|
|
|
√ |
|
|
√ |
|
|
√ |
|
|
√ |
|
|
√ |
Function Usage
Obtains the size (in bytes) of the data structure of a single operator. In the current version, the size of each operator data structure is the same.
As a best practice, the user can create a thread and call this API in the new thread. Otherwise, this API call will block the main thread.
Prototype
- C Prototype
1aclError aclprofGetOpDescSize(size_t *opDescSize)
- Python Function
1op_desc_size, ret = acl.prof.get_op_desc_size()
Parameter Description
None.
Return Value Description
|
Return Value |
Description |
|---|---|
|
op_desc_size |
Int, size of the operator data structure. |
|
ret |
Int, error code.
|