You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This looks like it might be related to #203 , but I am reporting this for completeness. Assignment in combination with broadcasting does not handle zero-sized blocks correctly:
julia> y = BlockedArray([2.0, 3.0], [1,0,1])
3-blocked 2-element BlockedVector{Float64}:
2.0
───
3.0
julia> z = y .+ 100.0 # correct result
3-blocked 2-element BlockedVector{Float64}:
102.0
─────
103.0
julia> y .+= 100.0 # second block is not acted upon
3-blocked 2-element BlockedVector{Float64}:
102.0
─────
3.0
The text was updated successfully, but these errors were encountered:
This looks like it might be related to #203 , but I am reporting this for completeness. Assignment in combination with broadcasting does not handle zero-sized blocks correctly:
The text was updated successfully, but these errors were encountered: