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

Method __mod__

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

Source from the content-addressed store, hash-verified

188 return _binary_rhs_helper(other)
189
190 def __mod__(self, other: Expr) -> "ExprWithOp":
191 return _binary_op_helper(self, other, _op_ffi_api.mod) # type: ignore
192
193 def __rmod__(self, other: Expr) -> "ExprWithOp":
194 return _binary_rhs_helper(other)

Callers

nothing calls this directly

Calls 1

_binary_op_helperFunction · 0.85

Tested by

no test coverage detected