Broadcasted element-wise test for (lhs <= rhs). Parameters ---------- x1 : relax.Expr The first input tensor. x2 : relax.Expr The second input tensor. Returns ------- result : relax.Expr The computed result.
(x1: Expr, x2: Expr)
| 279 | |
| 280 | |
| 281 | def less_equal(x1: Expr, x2: Expr) -> Expr: |
| 282 | """Broadcasted element-wise test for (lhs <= rhs). |
| 283 | |
| 284 | Parameters |
| 285 | ---------- |
| 286 | x1 : relax.Expr |
| 287 | The first input tensor. |
| 288 | x2 : relax.Expr |
| 289 | The second input tensor. |
| 290 | |
| 291 | Returns |
| 292 | ------- |
| 293 | result : relax.Expr |
| 294 | The computed result. |
| 295 | """ |
| 296 | return _ffi_api.less_equal(x1, x2) # type: ignore |
| 297 | |
| 298 | |
| 299 | def not_equal(x1: Expr, x2: Expr) -> Expr: |
nothing calls this directly
no test coverage detected
searching dependent graphs…