Function: get_op_name_len

Applicability

Product

Supported

Atlas 350 Accelerator Card

Atlas A3 training product/Atlas A3 inference product

Atlas A2 training product/Atlas A2 inference product

Atlas training product

Atlas inference product

Atlas 200I/500 A2 inference product

Description

Obtains the string length of the operator name for memory allocation.

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

Prototype

  • C Prototype
    1
    aclErroraclprofGetOpNameLen(const void *opInfo, size_t opInfoLen, uint32_t index, size_t *opNameLen)
    
  • Python Function
    1
    opNameLen, ret = acl.prof.get_op_name_len(opInfo, opInfoLen, index)
    

Parameters

Parameter

Description

opInfo

Int, address of the operator information.

opInfoLen

Int, length of the operator information.

index

Int, operator index.

The value range is [0, Operator count – 1]. Call acl.prof.get_op_num to obtain the operator count.

Return Value

Return Value

Description

opNameLen

Int, length of the operator name memory allocation.

ret

Int, error code.