aclmdlBundleQueryInfoFromMem

Applicability

Product

Supported

Atlas 350 Accelerator Card

Atlas A3 training product / Atlas A3 inference product

Atlas A2 training product / Atlas A2 inference product

Atlas 200I/500 A2 inference product

Atlas inference product

Atlas training product

Function Usage

Obtains the model description from the memory if variables need to be dynamically updated during model execution.

Prototype

1
aclError aclmdlBundleQueryInfoFromMem(const void *model, size_t modelSize, aclmdlBundleQueryInfo *queryInfo)

Parameters

Parameter

Input/Output

Description

model

Input

Pointer to the memory address for storing model data.

The model file is built using the graph build API. Call aclgrphBundleBuildModel to compile the model, call aclgrphBundleSaveModel to save the model, and then load the saved .om model file into the memory. For details about the graph APIs, see aclgrphBundleBuildModel in Graph Development.

In Ascend EP form, allocate memory on the host.

In Ascend RC form, allocate memory on the device.

In Ctrl CPU open form, allocate memory on the device.

modelSize

Input

Size of the model data in the memory, in bytes.

queryInfo

Output

Data of the aclmdlBundleQueryInfo type created by calling aclmdlBundleCreateQueryInfo.

Returns

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

Example

For details about the API call sequence and sample code, see Weight update (user-managed memory).