Skip to content

Commit

Permalink
Bump VectorizationBase test. Sort of workaround bug in Julia 1.5 in t…
Browse files Browse the repository at this point in the history
…estsuite...
  • Loading branch information
chriselrod committed Dec 12, 2020
1 parent 4a7d8a3 commit 04438b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ VectorizedRNG = "33b4df10-0173-11e9-2a0c-851a7edac40e"
ArrayInterface = "2.14.4"
LoopVectorization = "0.9.4"
SLEEFPirates = "0.6"
VectorizationBase = "0.13.7"
VectorizationBase = "0.13.11"
VectorizedRNG = "0.2.1"
julia = "1.5"

Expand Down
2 changes: 2 additions & 0 deletions test/misc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ end
@test A == @inferred(vcat(A_u, A_l))
@test PaddedMatrices.size(A) === PaddedMatrices.size(vcat(A_u, A_l))

# On 1.5 tests fail if you don't do this first.
@test pointer(view(A, 1:StaticInt(6), :)) == pointer(A)
A_u = view(A, 1:StaticInt(6), :)
A_l = view(A, StaticInt(7):StaticInt(10), :)
@test A == @inferred(vcat(A_u, A_l))
Expand Down

2 comments on commit 04438b7

@chriselrod
Copy link
Owner 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/26298

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.2.2 -m "<description of version>" 04438b79862847cf4c8b398821517658c713e90a
git push origin v0.2.2

Please sign in to comment.