MCPcopy Index your code
hub / github.com/apache/tvm / __sub__

Method __sub__

python/tvm/relax/expr.py:166–167  ·  view source on GitHub ↗
(self, other: Expr)

Source from the content-addressed store, hash-verified

164 return self.__add__(other)
165
166 def __sub__(self, other: Expr) -> "ExprWithOp":
167 return _binary_op_helper(self, other, _op_ffi_api.subtract) # type: ignore
168
169 def __rsub__(self, other: Expr) -> "ExprWithOp":
170 return _binary_rhs_helper(other)

Callers

nothing calls this directly

Calls 1

_binary_op_helperFunction · 0.85

Tested by

no test coverage detected