Skip to content

Commit 2e836e5

Browse files
Fix broadcast_shape type instability
1 parent ab51dbe commit 2e836e5

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

src/blockbroadcast.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ sortedunion(a::Base.OneTo, b::Base.OneTo) = Base.OneTo(max(last(a),last(b)))
3434
sortedunion(a::AbstractUnitRange, b::AbstractUnitRange) = min(first(a),first(b)):max(last(a),last(b))
3535
combine_blockaxes(a, b) = _BlockedUnitRange(sortedunion(blocklasts(a), blocklasts(b)))
3636

37-
Base.Broadcast.axistype(a::BlockedUnitRange, b::BlockedUnitRange) = length(b) == 1 ? a : combine_blockaxes(a, b)
38-
Base.Broadcast.axistype(a::BlockedUnitRange, b) = length(b) == 1 ? a : combine_blockaxes(a, b)
39-
Base.Broadcast.axistype(a, b::BlockedUnitRange) = length(b) == 1 ? a : combine_blockaxes(a, b)
37+
Base.Broadcast.axistype(a::BlockedUnitRange, b::BlockedUnitRange) = combine_blockaxes(a, b)
38+
Base.Broadcast.axistype(a::BlockedUnitRange, b) = combine_blockaxes(a, b)
39+
Base.Broadcast.axistype(a, b::BlockedUnitRange) = combine_blockaxes(a, b)
4040

4141

4242
similar(bc::Broadcasted{<:AbstractBlockStyle{N}}, ::Type{T}) where {T,N} =

test/test_blockbroadcast.jl

+6
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,12 @@ import BlockArrays: SubBlockIterator, BlockIndexRange, Diagonal
182182
u = BlockArray(randn(5), [2,3]);
183183
@inferred(copyto!(similar(u), Base.broadcasted(exp, u)))
184184
@test exp.(u) == exp.(Vector(u))
185+
186+
shape1 = (BlockArrays._BlockedUnitRange((2,)),);
187+
shape2 = (BlockArrays._BlockedUnitRange((2,)),);
188+
@inferred Base.Broadcast.axistype(shape1[1], shape2[1])
189+
@inferred BlockArrays.combine_blockaxes(shape1[1], shape2[1])
190+
@inferred Base.Broadcast.broadcast_shape(shape1, shape2)
185191
end
186192

187193
@testset "adjtrans" begin

0 commit comments

Comments
 (0)