Skip to content

Commit

Permalink
Added broadcast literal power test.
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed Apr 7, 2020
1 parent ad6c988 commit 6967c61
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ VectorizationBase = "3d5dd08c-fd9d-11e8-17fa-ed2836048c2f"

[compat]
OffsetArrays = "1"
SIMDPirates = "0.7.10"
SIMDPirates = "0.7.11"
SLEEFPirates = "0.4.4"
UnPack = "0"
VectorizationBase = "0.10"
Expand Down
3 changes: 3 additions & 0 deletions test/broadcast.jl
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@
D1 = C .^ 0.3;
D2 = @avx C .^ 0.3;
@test D1 D2
@. D1 = C ^ 2;
@avx @. D2 = C ^ 2;
@test D1 D2
end
end
end

2 comments on commit 6967c61

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

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.6.30 -m "<description of version>" 6967c61cf1b383e99bb674df55181cde5f0167c9
git push origin v0.6.30

Please sign in to comment.