vnot
功能说明
对tensor中的每个元素按位取反。
函数原型
vnot(raw_tensor)
参数说明
raw_tensor:输入tensor,tvm.tensor类型。
支持的类型有int16,uint16,uint32, int32
返回值
res_tensor:表示raw_tensor按位取反,tvm.tensor类型。
约束说明
无。
支持的型号
Atlas 200/300/500 推理产品
Atlas 训练系列产品
Atlas 推理系列产品(Ascend 310P处理器)
Atlas 200I/500 A2推理产品
Atlas A2训练系列产品/Atlas 800I A2推理产品
调用示例
from tbe import tvm from tbe import dsl shape = (1024,1024) input_dtype = "int16" data = tvm.placeholder(shape, name="data", dtype=input_dtype) res = dsl.vnot(data)
父主题: Math计算接口