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

Method __le__

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

Source from the content-addressed store, hash-verified

150 return _binary_op_helper(self, other, _op_ffi_api.greater_equal) # type: ignore
151
152 def __le__(self, other: Expr) -> "ExprWithOp":
153 return _binary_op_helper(self, other, _op_ffi_api.less_equal) # type: ignore
154
155 # NOTE: Cannot override __eq__ and __ne__, which will influence object equal
156

Callers

nothing calls this directly

Calls 1

_binary_op_helperFunction · 0.85

Tested by

no test coverage detected