Skip to content

Commit 78cd6b1

Browse files
committed
two more LV bugs
1 parent 4bae7d5 commit 78cd6b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parsing.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -670,10 +670,10 @@ end
670670
@test axes(
671671
@tullio dP[x,y,z] := Diff[a+2, b+2] * Diff[c+2, d+2] *
672672
P[mod(x+a+c), mod(y+b+d), z] * P[mod(x+a),mod(y+b),z] (a in -1:1,
673-
b in -1:1, c in -1:1, d in -1:1, z in 1:3, x in 1:n, y in 1:n)
673+
b in -1:1, c in -1:1, d in -1:1, z in 1:3, x in 1:n, y in 1:n) avx=false # UndefVarError: `#f###46###` not defined
674674
) == (1:4, 1:4, 1:3)
675675
@test axes(
676-
@tullio out[x,y] := Diff[mod(x+(y+2z)),x] * Diff[y,clamp(x+1+2x+y)] z in 1:3
676+
@tullio out[x,y] := Diff[mod(x+(y+2z)),x] * Diff[y,clamp(x+1+2x+y)] z in 1:3 avx=false
677677
) == (1:3, 1:3)
678678
# unable to infer range of index z
679679
@test_throws LoadError @eval @tullio out[x,y] := Diff[mod(x+(y+2z)),x] * Diff[x,y]

0 commit comments

Comments
 (0)