aclrtBinaryGetFunctionByEntry

Note: This API is reserved and not supported currently.

Description

Obtains the kernel function handle based on the function entry.

For the same binHandle, when aclrtBinaryGetFunctionByEntry is called for the first time, the operator binary data associated with binHandle is copied to the device corresponding to the current context by default.

Prototype

1
aclError aclrtBinaryGetFunctionByEntry(aclrtBinHandle binHandle, uint64_t funcEntry, aclrtFuncHandle *funcHandle)

Parameters

Parameter

Input/Output

Description

binHandle

Input

Handle of the operator binary. For details about the type definition, see aclrtBinHandle.

Call aclrtBinaryLoadFromFile or aclrtBinaryLoadFromData to obtain the operator binary handle and pass it as an input parameter.

funcEntry

Input

Keyword of the kernel function.

funcHandle

Output

Kernel function handle. For details about the type definition, see aclrtFuncHandle.

Returns

0 on success; otherwise, failure. For details, see aclError.