Skip to content

Commit 56214fd

Browse files
committed
OffsetArray tests take a very long time now on Julia 1.1 with AVX512, therefore don't perform these tests on Travis.
1 parent a2e40aa commit 56214fd

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ VectorizationBase = "3d5dd08c-fd9d-11e8-17fa-ed2836048c2f"
1616
DocStringExtensions = "0.8"
1717
OffsetArrays = "1"
1818
SIMDPirates = "0.8.12"
19-
SLEEFPirates = "0.5"
19+
SLEEFPirates = "0.5.4"
2020
UnPack = "0,1"
2121
VectorizationBase = "0.12.15"
2222
julia = "1.1"

test/runtests.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ Base.IndexStyle(::Type{<:FallbackArrayWrapper}) = IndexLinear()
4545

4646
@time include("check_empty.jl")
4747

48-
@time include("offsetarrays.jl")
48+
if isnothing(get(ENV, "TRAVIS_BRANCH", nothing)) || LoopVectorization.REGISTER_COUNT != 32 || VERSION >= v"1.4"
49+
@time include("offsetarrays.jl")
50+
end
4951

5052
@time include("tensors.jl")
5153

0 commit comments

Comments
 (0)