Skip to content

Commit

Permalink
Fix log test, require VectorizationBase 0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed Mar 27, 2021
1 parent 06264b1 commit da31d2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ VectorizationBase = "3d5dd08c-fd9d-11e8-17fa-ed2836048c2f"

[compat]
IfElse = "0.1"
VectorizationBase = "0.19.1"
VectorizationBase = "0.19.22"
julia = "1.5"

[extras]
Expand Down
1 change: 1 addition & 0 deletions src/log.jl
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,7 @@ end
else
@inline log_fast(::Val{BASE}, d::AbstractSIMD) where {BASE} = log_fast(Val{BASE}(), float(d), False())
end
@inline log_fast(::Val{BASE}, d::AbstractSIMD{2,Float32}) where {BASE} = log_fast(Val{BASE}(), float(d), False())
@inline log_fast(d::Union{Float32,Float64}) = log_fast(Val{ℯ}(), d, False())
@inline log2_fast(d::Union{Float32,Float64}) = log_fast(Val{2}(), d, False())
@inline log10_fast(d::Union{Float32,Float64}) = log_fast(Val{10}(), d, False())
Expand Down

2 comments on commit da31d2d

@chriselrod
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/32963

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.6.14 -m "<description of version>" da31d2dab35bba4c7381e2f43226c1c42beecf19
git push origin v0.6.14

Please sign in to comment.