Skip to content

Commit

Permalink
Correctly update 32-bit choose_order test.
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed Jul 2, 2020
1 parent ca01cd1 commit 15a5507
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/gemm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@
elseif LoopVectorization.REGISTER_COUNT == 16
@test LoopVectorization.choose_order(lsAtmulBt8) == ([:n, :m, :k], :m, :n, :m, 2, 4)
elseif LoopVectorization.REGISTER_COUNT == 8
@test LoopVectorization.choose_order(lsAtmulBt8) == ([:n, :m, :k], :n, :m, :n, 1, 4)
@test LoopVectorization.choose_order(lsAtmulBt8) == ([:n, :m, :k], :m, :n, :m, 1, 4)
end

struct SizedMatrix{M,N,T} <: DenseMatrix{T}
Expand Down

2 comments on commit 15a5507

@chriselrod
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/17319

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.8.9 -m "<description of version>" 15a5507cb08e183455bbc2f9b75d05600fd385a9
git push origin v0.8.9

Please sign in to comment.