Skip to content

Commit f8cc7d7

Browse files
author
Michael Abbott
committed
skip two
1 parent cedff62 commit f8cc7d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/gradients.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ end
132132
end
133133
@testset "mod, clamp, pad" begin
134134

135-
fmod(x) = @tullio y[i] := x[mod(i)] i in 1:5
136-
fclamp(x) = @tullio y[i] := x[clamp(i)] i in 1:5
135+
fmod(x) = @tullio y[i] := x[mod(i)] i in 1:5 avx=false # fails on 1.4, LV 0.8
136+
fclamp(x) = @tullio y[i] := x[clamp(i)] i in 1:5 avx=false
137137
fpad(x) = @tullio y[i] := x[pad(i-2,2)]
138138
@test _gradient(sumfmod, ones(3))[1] == [2,2,1]
139139
@test _gradient(sumfclamp, ones(3))[1] == [1,1,3]

0 commit comments

Comments
 (0)