vnot

Description

Performs NOT operation on a tensor element-wise.

Prototype

vnot(raw_tensor)

Parameters

raw_tensor: a tvm.tensor for the input tensor

The supported types are int16, uint16, uint32, and int32.

Returns

res_tensor: a tvm.tensor for the result tensor

Restrictions

None

Applicability

Atlas 200/300/500 Inference Product

Atlas Training Series Product

Example

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)