Skip to content

Commit f414460

Browse files
committed
Need to use LoopVectorization.REGISTER_COUNT for the sake of 32-bit systems.
1 parent 140a08f commit f414460

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/gemm.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@
585585
end
586586
C[m,n] = ΔCₘₙ
587587
end) |> LoopVectorization.LoopSet;
588-
if LoopVectorization.VectorizationBase.REGISTER_COUNT == 32
588+
if LoopVectorization.REGISTER_COUNT == 32
589589
@test LoopVectorization.choose_order(lsAtmulBt8) == ([:n, :m, :k], :m, :n, :m, 1, 8)
590590
else
591591
# @test LoopVectorization.choose_order(lsAtmulBt8) == ([:n, :m, :k], :m, :n, :m, 2, 4)

0 commit comments

Comments
 (0)