MCPcopy Create free account
hub / github.com/apache/tvm / __radd__

Method __radd__

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

Source from the content-addressed store, hash-verified

161 return _binary_op_helper(self, other, _op_ffi_api.add) # type: ignore
162
163 def __radd__(self, other: Expr) -> "ExprWithOp":
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

Callers

nothing calls this directly

Calls 1

__add__Method · 0.95

Tested by

no test coverage detected