vaddrelu
功能说明
将tensor_0中每个元素加上tensor_1中的对应元素,然后做线性整流,对应的计算为relu(tensor_0 + tensor_1)。
函数原型
vaddrelu(lhs, rhs)
参数说明
返回值
res_tensor:表示relu(lhs+rhs),tvm.tensor类型。
约束说明
无。
支持的型号
Atlas 200/300/500 推理产品
Atlas 训练系列产品
Atlas 推理系列产品(Ascend 310P处理器)
Atlas 200/500 A2推理产品
Atlas A2训练系列产品/Atlas 800I A2推理产品
调用示例
from tbe import tvm from tbe import dsl shape = (1024,1024) input_dtype = "float16" data = tvm.placeholder(shape, name="data", dtype=input_dtype) data1 = tvm.placeholder(shape, name="data1", dtype=input_dtype) res = dsl.vaddrelu(data, data1)
父主题: 废弃接口