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

Method __gt__

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

Source from the content-addressed store, hash-verified

144 return _binary_op_helper(self, other, _op_ffi_api.less) # type: ignore
145
146 def __gt__(self, other: Expr) -> "ExprWithOp":
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

Callers

nothing calls this directly

Calls 1

_binary_op_helperFunction · 0.85

Tested by

no test coverage detected