| 112 | //! ERF: gauss error function |
| 113 | template <> |
| 114 | mlir::Value lower_mode<Mode::ERF>( |
| 115 | mlir::OpBuilder& builder, mlir::Location loc, ValueRange operands) { |
| 116 | ValueBuilderHelper helper(builder, loc); |
| 117 | return erf_approx(helper, operands[0]); |
| 118 | } |
| 119 | |
| 120 | //! EXPM1: exp(x) - 1 |
| 121 | template <> |
nothing calls this directly
no test coverage detected