Missing complex erf
Looks like we don't have an erf function
```julia
x = ConcreteRNumber(1.0 + 0.5im)
@jit erf(x)
MethodError: no method matching _erf(::Reactant.TracedRNumber{ComplexF64})
The function `_erf` exists, but no method is defined for this combination of argument types.
Closest candidates are:
_erf(::Float16)
@ SpecialFunctions ~/.julia/packages/SpecialFunctions/AeoJp/src/erf.jl:256
_erf(::Float32)
@ SpecialFunctions ~/.julia/packages/SpecialFunctions/AeoJp/src/erf.jl:213
_erf(::Float64)
@ SpecialFunctions ~/.julia/packages/SpecialFunctions/AeoJp/src/erf.jl:108
```
0 条评论