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

Method __mul__

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

Source from the content-addressed store, hash-verified

170 return _binary_rhs_helper(other)
171
172 def __mul__(self, other: Expr) -> "ExprWithOp":
173 return _binary_op_helper(self, other, _op_ffi_api.multiply) # type: ignore
174
175 def __rmul__(self, other: Expr) -> "ExprWithOp":
176 return self.__mul__(other)

Callers 1

__rmul__Method · 0.95

Calls 1

_binary_op_helperFunction · 0.85

Tested by

no test coverage detected