Skip to content

Commit

Permalink
PolyesterWeave 0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed Sep 8, 2022
1 parent f901119 commit 88dfe72
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LoopVectorization"
uuid = "bdcacae8-1622-11e9-2a5c-532679323890"
authors = ["Chris Elrod <[email protected]>"]
version = "0.12.126"
version = "0.12.127"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down Expand Up @@ -43,7 +43,7 @@ HostCPUFeatures = "0.1.3"
IfElse = "0.1"
LayoutPointers = "0.1.2"
OffsetArrays = "1.4.1"
PolyesterWeave = "0.1.0 - 0.1.9"
PolyesterWeave = "0.1.10"
SIMDDualNumbers = "0.1"
SIMDTypes = "0.1"
SLEEFPirates = "0.6.23"
Expand Down
8 changes: 4 additions & 4 deletions src/codegen/lower_threads.jl
Original file line number Diff line number Diff line change
Expand Up @@ -528,10 +528,10 @@ function thread_one_loops_expr(
var"#nrem#thread#0#" -= var"#nrequest#"
end
else# eliminate undef var errors that the compiler should be able to figure out are unreachable, but doesn't
var"#torelease#tuple#" = (zero(PolyesterWeave.worker_type()),)
var"#torelease#tuple#" = (zero(UInt),)
var"#threads#tuple#" = (
PolyesterWeave.UnsignedIteratorEarlyStop(
zero(PolyesterWeave.worker_type()),
zero(UInt),
0x00000000,
),
)
Expand Down Expand Up @@ -807,9 +807,9 @@ function thread_two_loops_expr(
end
end
else# eliminate undef var errors that the compiler should be able to figure out are unreachable, but doesn't
var"#torelease#tuple#" = (zero(PolyesterWeave.worker_type()),)
var"#torelease#tuple#" = (zero(UInt),)
var"#threads#tuple#" = PolyesterWeave.UnsignedIteratorEarlyStop(
zero(PolyesterWeave.worker_type()),
zero(UInt),
0x00000000,
)
end
Expand Down

2 comments on commit 88dfe72

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

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.12.127 -m "<description of version>" 88dfe72e29a7308d551f894b8cf8cc2ceaf21404
git push origin v0.12.127

Please sign in to comment.