Skip to content

Commit 881a529

Browse files
committed
skip 3
1 parent 362521f commit 881a529

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/parsing.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ using Tullio, Test, LinearAlgebra
4242
@test S S′ sum(A)/2
4343

4444
# almost scalar
45-
@tullio Z[] := A[i] + A[j]
45+
@tullio Z[] := A[i] + A[j] avx=false
4646
@test Z isa Array{Int,0}
47-
@tullio Z′[1,1] := A[i] + A[j]
47+
@tullio Z′[1,1] := A[i] + A[j] avx=false
4848
@test size(Z′) == (1,1)
49-
@tullio Z′′[_] := A[i] + A[j]
49+
@tullio Z′′[_] := A[i] + A[j] avx=false
5050
@test size(Z′′) == (1,)
5151
@test Z[] == Z′[1,1] == Z′′[1] == sum(A .+ A')
5252

0 commit comments

Comments
 (0)