Skip to content

Commit

Permalink
Updated project and manifest.
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed Jan 10, 2020
1 parent 4f9f9f0 commit da4139d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,6 @@ uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[[VectorizationBase]]
deps = ["CpuId", "LinearAlgebra"]
git-tree-sha1 = "bb905673925d36d1bf4693a114687d56723d5991"
git-tree-sha1 = "81c1b3171d93e64345d75a9f08d190a155e9f009"
uuid = "3d5dd08c-fd9d-11e8-17fa-ed2836048c2f"
version = "0.1.6"
version = "0.1.7"
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ MacroTools = "0.5"
Parameters = "0.12.0"
SIMDPirates = "0.1.4"
SLEEFPirates = "0.1.2"
VectorizationBase = "0.1.6"
VectorizationBase = "0.1.7"
julia = "1.3.0"

[extras]
Expand Down
3 changes: 1 addition & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,7 @@ using LinearAlgebra
B[j,i] = A[j,i] - x[j]
end)
lssubcol = LoopVectorization.LoopSet(subcolq);
# @test LoopVectorization.choose_order(lssubcol) == (Symbol[:j,:i], :j, 4, -1)
@test LoopVectorization.choose_order(lssubcol) == (Symbol[:j,:i], :j, 2, -1)
@test LoopVectorization.choose_order(lssubcol) == (Symbol[:j,:i], :j, 4, -1)
## @avx is SLOWER!!!!
## need to fix!
function mysubcol!(B, A, x)
Expand Down

2 comments on commit da4139d

@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 register()

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

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 Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.4 -m "<description of version>" da4139d7b77c381e534a2633dcdee954c17e81cc
git push origin v0.3.4

Please sign in to comment.