| 204 | //! ATAN2 |
| 205 | template <> |
| 206 | mlir::Value lower_mode<Mode::ATAN2>( |
| 207 | mlir::OpBuilder& builder, mlir::Location loc, ValueRange operands) { |
| 208 | ValueBuilderHelper helper(builder, loc); |
| 209 | return atan2_approx(helper, operands[0], operands[1]); |
| 210 | } |
| 211 | |
| 212 | //! EQ: x == y ? 1 : 0 |
| 213 | template <> |
nothing calls this directly
no test coverage detected