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

Method __lt__

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

Source from the content-addressed store, hash-verified

141 return _op_ffi_api.negative(self) # type: ignore
142
143 def __lt__(self, other: Expr) -> "ExprWithOp":
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

Callers

nothing calls this directly

Calls 1

_binary_op_helperFunction · 0.85

Tested by

no test coverage detected