Skip to content

Commit d320a56

Browse files
committed
unstaged
1 parent 9a1411b commit d320a56

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ OffsetArrays = "1"
2121
Requires = "1"
2222
TensorOperations = "3"
2323
Tracker = "0.2"
24-
VectorizationBase = "0.12.33, 0.19.14"
24+
VectorizationBase = "0.12.33, 0.19.25"
2525
Zygote = "0.6"
2626
julia = "1.3"
2727

test/parsing.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ using Tullio, Test, LinearAlgebra
1111
@test A == [i^2 for i in 1:10]
1212

1313
# diagonals
14-
@tullio D[i,i] := trunc(Int, sqrt(A[i])) avx=false # MethodError: no method matching trunc(::Type{Int64}, ::VectorizationBase.Vec{4,Float64})
14+
@tullio D[i,i] := trunc(Int, sqrt(A[i]))
1515
@test D == Diagonal(sqrt.(A))
1616

1717
# arrays of arrays
@@ -274,6 +274,8 @@ end
274274

275275
using OffsetArrays
276276

277+
# One new failure in here on 0.12, looks similar to others?
278+
277279
@testset "index shifts" begin
278280

279281
A = [i^2 for i in 1:10]

0 commit comments

Comments
 (0)