Skip to content

Commit b5c0af9

Browse files
committed
Update a choose_order test.
1 parent 1800d56 commit b5c0af9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/gemm.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,8 @@
352352
if LoopVectorization.register_count() == 32
353353
@test LoopVectorization.choose_order(lsr2amb) == ([:n, :m, :k], :m, :n, :m, 3, 7)
354354
elseif LoopVectorization.register_count() == 16
355-
@test LoopVectorization.choose_order(lsr2amb) == ([:m, :n, :k], :m, :n, :m, 1, 6)
355+
# @test LoopVectorization.choose_order(lsr2amb) == ([:m, :n, :k], :m, :n, :m, 1, 6)
356+
@test LoopVectorization.choose_order(lsr2amb) == ([:m, :n, :k], :m, :n, :m, 2, 4)
356357
end
357358
function rank2AmulBavx!(C, Aₘ, Aₖ, B)
358359
@avx for m axes(C,1), n axes(C,2)

0 commit comments

Comments
 (0)