Function: get_op_desc_size

C Prototype

aclError aclprofGetOpDescSize(size_t *opDescSize)

Python Function

op_desc_size, ret = acl.prof.get_op_desc_size()

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.

You are advised to create a thread and call this API in the new thread. Otherwise, this API call will block the main thread.

Input Description

None

Return Value

op_desc_size: int, size of the operator data structure.

ret: int, error code.

Restrictions

None

Reference

For the API call example, see Profile Data Collection.