昇腾社区首页
中文
注册

函数:update_params

产品支持情况

产品

是否支持

Atlas A3 训练系列产品 / Atlas A3 推理系列产品

Atlas A2 训练系列产品 / Atlas 800I A2 推理产品 /A200I A2 Box 异构组件

Atlas 训练系列产品

Atlas 推理系列产品

Atlas 200I/500 A2 推理产品

Atlas 200/300/500 推理产品

功能说明

动态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表示成功,返回其它值表示失败。

资源参考

接口调用流程及示例,参见动态Shape算子(注册算子选择器)