Skip to content

Commit

Permalink
Need to use LoopVectorization.REGISTER_COUNT for the sake of 32-bit s…
Browse files Browse the repository at this point in the history
…ystems.
  • Loading branch information
chriselrod committed Jun 23, 2020
1 parent 140a08f commit f414460
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 @@ -585,7 +585,7 @@
end
C[m,n] = ΔCₘₙ
end) |> LoopVectorization.LoopSet;
if LoopVectorization.VectorizationBase.REGISTER_COUNT == 32
if LoopVectorization.REGISTER_COUNT == 32
@test LoopVectorization.choose_order(lsAtmulBt8) == ([:n, :m, :k], :m, :n, :m, 1, 8)
else
# @test LoopVectorization.choose_order(lsAtmulBt8) == ([:n, :m, :k], :m, :n, :m, 2, 4)
Expand Down

2 comments on commit f414460

@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/16792

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.6 -m "<description of version>" f4144609134c9109628482f3b8be0d3b7f274af7
git push origin v0.8.6

Please sign in to comment.