Skip to content

Commit e1b8849

Browse files
committed
skip, etc
1 parent 5611aa8 commit e1b8849

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

test/parsing.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,13 @@ using Tullio, Test, LinearAlgebra
7979
@test A2 == 2 .* A
8080

8181
# broadcasting
82-
@tullio S[i] := sqrt.(M[:,i]) # avx & grad now disabled by try/catch
83-
# @tullio T[i] := A[i] .+ A[j] # dot does nothing, fails with LoopVectorization loaded
82+
@tullio S[i] := sqrt.(M[:,i])
8483

8584
# scope
8685
f(x,k) = @tullio y[i] := x[i] + i + $k
8786
@test f(ones(3),j) == 1 .+ (1:3) .+ j
8887

89-
g(x) = @tullio y := sqrt(x[i])
88+
g(x) = @tullio y := sqrt(x[i]) avx=false
9089
@test g(fill(4,5)) == 10
9190

9291
# ranges

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if test_group in ["all", "1"]
2121
include("group-1.jl")
2222
end
2323

24-
if test_group in ["all", "2"] && VERSION <= v"1.6" # KA testing time-out https://github.com/JuliaGPU/KernelAbstractions.jl/issues/155
24+
if test_group in ["all", "2"]
2525
include("group-2.jl")
2626
end
2727

0 commit comments

Comments
 (0)