Function: get_function_name

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

Function

Obtains the kernel function name based on the kernel function handle.

Prototype

  • C Prototype
    1
    aclError aclrtGetFunctionName(aclrtFuncHandle funcHandle, uint32_t maxLen, char *name)
    
  • Python Function
    1
    func_name, ret = acl.rt.get_function_name(func_handle, max_len)
    

Parameters

Parameter

Description

func_handle

Int, kernel function handle.

max_len

Int, maximum memory size (in bytes) for storing the kernel function name. The value range is [0, 1024).

Return Value

Returned Value

Description

func_name

Str, kernel function name.

ret

Int, 0 on success; else, failure.