File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ using Requires
63
63
using . LoopVectorization. VectorizationBase: Vec, Mask, prevpow2
64
64
SVec{N,T} = Vec{N,T}
65
65
end
66
-
66
+ #=
67
67
# Functions needed for safe vectorised max gradient
68
68
@inline Tullio.onlyone(cond::Bool, seen::SVec) = cond && allzero(seen)
69
69
@@ -75,6 +75,7 @@ using Requires
75
75
@inline allzero(seen::SVec) = iszero((!iszero(seen)).u)
76
76
77
77
@inline Tullio.anyone(cond::Mask) = !iszero(cond.u)
78
+ =#
78
79
end
79
80
80
81
#= ========= CuArrays ==========#
Original file line number Diff line number Diff line change @@ -107,6 +107,7 @@ t8 = time()
107
107
using LoopVectorization
108
108
using VectorizationBase
109
109
110
+ #=
110
111
if isdefined(VectorizationBase, :SVec) # LV version 0.8, for Julia <= 1.5
111
112
using VectorizationBase: SVec, Mask
112
113
else # LV version 0.9, supports Julia >= 1.5
136
137
@test Tullio.onlyone(ms, zero(sv)) === Mask{4}(0x02)
137
138
# @test Tullio.onlyone(ms, zero(sv)).u == 0x02
138
139
end
140
+ =#
139
141
140
142
@testset " parsing + LoopVectorization" begin include (" parsing.jl" ) end
141
143
You can’t perform that action at this time.
0 commit comments