Atan2 with numpy-style broadcasting. Parameters ---------- x1 : relax.Expr The first input tensor (y-coordinates). x2 : relax.Expr The second input tensor (x-coordinates). Returns ------- result : relax.Expr The computed result.
(x1: Expr, x2: Expr)
| 142 | |
| 143 | |
| 144 | def atan2(x1: Expr, x2: Expr) -> Expr: |
| 145 | """Atan2 with numpy-style broadcasting. |
| 146 | |
| 147 | Parameters |
| 148 | ---------- |
| 149 | x1 : relax.Expr |
| 150 | The first input tensor (y-coordinates). |
| 151 | x2 : relax.Expr |
| 152 | The second input tensor (x-coordinates). |
| 153 | |
| 154 | Returns |
| 155 | ------- |
| 156 | result : relax.Expr |
| 157 | The computed result. |
| 158 | """ |
| 159 | return _ffi_api.atan2(x1, x2) # type: ignore |
| 160 | |
| 161 | |
| 162 | def subtract(x1: Expr, x2: Expr) -> Expr: |
nothing calls this directly
no test coverage detected
searching dependent graphs…