diff --git a/Project.toml b/Project.toml index 52e8b99..a721fc8 100644 --- a/Project.toml +++ b/Project.toml @@ -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" diff --git a/test/misc.jl b/test/misc.jl index 9c7fd73..55e9e8e 100644 --- a/test/misc.jl +++ b/test/misc.jl @@ -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))