Skip to content

Commit ab7a56b

Browse files
committed
Need VectorizationBase.
1 parent 982ce35 commit ab7a56b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/determinestrategy.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ function solve_unroll(X, R, u₁L, u₂L, u₁step, u₂step)
387387
# If we don't have AVX512, masks occupy a vector register;
388388
# AVX512F is currently defined as `false` for non-x86 CPUs, but
389389
# should instead define generic constant `HAS_OPMASK_REGISTERS` in VectorizationBase.jl to use here instead.
390-
AVX512F || (R[3] += 1)
390+
VectorizationBase.AVX512F || (R[3] += 1)
391391
R₁, R₂, R₃, R₄, R₅ = R[1], R[2], R[3], R[4], R[5]
392392
iszero(R₅) || return solve_unroll_iter(X, R, u₁L, u₂L, u₁step:u₁step:10, u₂step:u₂step:10)
393393
RR = REGISTER_COUNT - R₃ - R₄

0 commit comments

Comments
 (0)