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

Method __ge__

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

Source from the content-addressed store, hash-verified

147 return _binary_op_helper(self, other, _op_ffi_api.greater) # type: ignore
148
149 def __ge__(self, other: Expr) -> "ExprWithOp":
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

Callers

nothing calls this directly

Calls 1

_binary_op_helperFunction · 0.85

Tested by

no test coverage detected