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

Method __rmul__

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

Source from the content-addressed store, hash-verified

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)
177
178 def __truediv__(self, other: Expr) -> "ExprWithOp":
179 return _binary_op_helper(self, other, _op_ffi_api.divide) # type: ignore

Callers

nothing calls this directly

Calls 1

__mul__Method · 0.95

Tested by

no test coverage detected