diff --git a/Project.toml b/Project.toml index b5ad0bf..b729ca6 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "SLEEFPirates" uuid = "476501e8-09a2-5ece-8869-fb82de89a1fa" authors = ["chriselrod "] -version = "0.6.14" +version = "0.6.15" [deps] IfElse = "615f187c-cbe4-4ef1-ba3b-2fcf58d6d173" diff --git a/src/SLEEFPirates.jl b/src/SLEEFPirates.jl index 01c933b..8e10889 100644 --- a/src/SLEEFPirates.jl +++ b/src/SLEEFPirates.jl @@ -157,7 +157,7 @@ end @inline sincospi_fast(v::AbstractSIMD{W,T}) where {W,T} = sincos_fast(T(π) * v) @inline sincospi_fast(v::Vec{W,T}) where {W,T} = sincos_fast(T(π) * v) -for func in (:sinh, :cosh, :tanh, :asinh, :acosh, :atanh, :log2, :log10, :log1p, :expm1)#, :exp, :exp2, :exp10 +for func in (:sinh, :cosh, :tanh, :asinh, :acosh, :atanh, :log1p, :expm1)#, :exp, :exp2, :exp10 @eval @inline Base.$func(x::AbstractSIMD{W,T}) where {W,T<:Union{Float32,Float64,Int32,UInt32,Int64,UInt64}} = $func(x) @eval @inline Base.$func(x::MM) = $func(Vec(x)) end