Skip to content

Commit fab052e

Browse files
committed
Child stores of reduct parents should be reducts, fixes #352.
1 parent 4e9ca9e commit fab052e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
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.93"
4+
version = "0.12.94"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"

src/parse/add_compute.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function setdiffv!(s4::AbstractVector{T}, s3::AbstractVector{T}, s1::AbstractVec
3434
end
3535
function update_deps!(deps::Vector{Symbol}, reduceddeps::Vector{Symbol}, parent::Operation)
3636
mergesetv!(deps, loopdependencies(parent))#, reduceddependencies(parent))
37-
if !(isload(parent) || isconstant(parent)) && !isreductcombineinstr(parent)
37+
if !(isload(parent) || isconstant(parent)) #&& !isreductcombineinstr(parent)
3838
mergesetv!(reduceddeps, reduceddependencies(parent))
3939
end
4040
nothing

0 commit comments

Comments
 (0)