From 04438b79862847cf4c8b398821517658c713e90a Mon Sep 17 00:00:00 2001 From: Chris Elrod Date: Sat, 12 Dec 2020 15:56:50 -0500 Subject: [PATCH] Bump VectorizationBase test. Sort of workaround bug in Julia 1.5 in testsuite... --- Project.toml | 2 +- test/misc.jl | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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))