函数:update_params
产品支持情况
产品 |
是否支持 |
---|---|
|
√ |
|
√ |
|
√ |
|
√ |
|
√ |
|
√ |
功能说明
动态Shape场景下,设置算子Tiling参数、执行并发数。
函数原型
- C函数原型
1 2 3 4 5 6
aclError aclopUpdateParams(const char *opType, int numInputs, const aclTensorDesc *const inputDesc[], int numOutputs, const aclTensorDesc *const outputDesc[], const aclopAttr *attr)
- python函数
1
ret = acl.op.update_params(op_type, input_desc, output_desc, attr)
参数说明
参数名 |
说明 |
---|---|
op_type |
str,算子类型名称。 |
input_desc |
list,算子输入Tensor的描述。 |
output_desc |
list,算子输出Tensor的描述。 |
attr |
int,算子属性。 |
返回值说明
返回值 |
说明 |
---|---|
ret |
int,错误码,返回0表示成功,返回其它值表示失败。 |
父主题: 单算子模型执行