Skip to content

Commit 538bb2f

Browse files
committed
Disable some vectorization tests on windows
1 parent 3bc3449 commit 538bb2f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/intrinsics.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ end
1313

1414
const float_types = filter(x -> x <: Base.IEEEFloat, GPUArraysTestSuite.supported_eltypes(CLArray))
1515
const ispocl = cl.platform().name == "Portable Computing Language"
16-
const simd_ns = [2, 3, 4, 8, 16]
16+
# XXX: Why does pocl on windows not support vectors of size 2, 8, 16?
17+
const simd_ns = (Sys.iswindows() && ispocl) ? [3, 4] : [2, 3, 4, 8, 16]
1718

1819
@testset "intrinsics" begin
1920

0 commit comments

Comments
 (0)