Skip to content

Commit 88dfe72

Browse files
committed
PolyesterWeave 0.1.10
1 parent f901119 commit 88dfe72

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LoopVectorization"
22
uuid = "bdcacae8-1622-11e9-2a5c-532679323890"
33
authors = ["Chris Elrod <[email protected]>"]
4-
version = "0.12.126"
4+
version = "0.12.127"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
@@ -43,7 +43,7 @@ HostCPUFeatures = "0.1.3"
4343
IfElse = "0.1"
4444
LayoutPointers = "0.1.2"
4545
OffsetArrays = "1.4.1"
46-
PolyesterWeave = "0.1.0 - 0.1.9"
46+
PolyesterWeave = "0.1.10"
4747
SIMDDualNumbers = "0.1"
4848
SIMDTypes = "0.1"
4949
SLEEFPirates = "0.6.23"

src/codegen/lower_threads.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -528,10 +528,10 @@ function thread_one_loops_expr(
528528
var"#nrem#thread#0#" -= var"#nrequest#"
529529
end
530530
else# eliminate undef var errors that the compiler should be able to figure out are unreachable, but doesn't
531-
var"#torelease#tuple#" = (zero(PolyesterWeave.worker_type()),)
531+
var"#torelease#tuple#" = (zero(UInt),)
532532
var"#threads#tuple#" = (
533533
PolyesterWeave.UnsignedIteratorEarlyStop(
534-
zero(PolyesterWeave.worker_type()),
534+
zero(UInt),
535535
0x00000000,
536536
),
537537
)
@@ -807,9 +807,9 @@ function thread_two_loops_expr(
807807
end
808808
end
809809
else# eliminate undef var errors that the compiler should be able to figure out are unreachable, but doesn't
810-
var"#torelease#tuple#" = (zero(PolyesterWeave.worker_type()),)
810+
var"#torelease#tuple#" = (zero(UInt),)
811811
var"#threads#tuple#" = PolyesterWeave.UnsignedIteratorEarlyStop(
812-
zero(PolyesterWeave.worker_type()),
812+
zero(UInt),
813813
0x00000000,
814814
)
815815
end

0 commit comments

Comments
 (0)