aclopExecWithHandle

函数功能

以Handle方式调用一个算子,不支持动态Shape算子,动态Shape算子请使用aclopExecuteV2。异步接口。

约束说明

函数原型

aclError aclopExecWithHandle(aclopHandle *handle,

int numInputs,

const aclDataBuffer *const inputs[],

int numOutputs,

aclDataBuffer *const outputs[],

aclrtStream stream);

参数说明

参数名

输入/输出

说明

handle

输入

算子执行算子handle的指针。

需提前调用aclopCreateHandle接口创建aclopHandle类型的数据。

numInputs

输入

算子输入tensor的数量。

inputs

输入

算子输入tensor的指针数组。

需提前调用aclCreateDataBuffer接口创建aclDataBuffer类型的数据。

inputs数组中的元素个数必须与numInputs参数值保持一致。

numOutputs

输入

算子输出tensor的数量。

outputs

输出

算子输出tensor的指针数组。

需提前调用aclCreateDataBuffer接口创建aclDataBuffer类型的数据。

outputs数组中的元素个数必须与numOutputs参数值保持一致

stream

输入

该算子需要加载的stream。

返回值说明

返回0表示成功,返回其它值表示失败。