Skip to content

Commit 05a8124

Browse files
committed
VectorizationBase not defined in tests
1 parent 0db912b commit 05a8124

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/ifelsemasks.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ T = Float32
562562
bit = a .> 0.5; bool = copyto!(Vector{Bool}(undef, length(bit)), bit);
563563
t = Bernoulli_logit(bit, a);
564564
@test isapprox(t, Bernoulli_logitavx(bit, a), atol = ifelse(Int === Int32, 0.1, 0.0))
565-
if VectorizationBase.pick_vector_width(eltype(a)) 4
565+
if LoopVectorization.pick_vector_width(eltype(a)) 4
566566
# @_avx isn't really expected to work with bits if you don't have AVX512
567567
# but it happens to work with AVX2 for this anyway, so may as well keep testing.
568568
# am ruling out non-avx2 with the `VectorizationBase.pick_vector_width(eltype(a)) ≥ 4` check

0 commit comments

Comments
 (0)