Skip to content

Commit 1c53f4a

Browse files
mateuszbaranc42f
authored andcommitted
fix for issue #641 (#662)
* fix for issue #641 * better disambiguation for hcat/vcat reductions
1 parent 1a54a0b commit 1c53f4a

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

src/mapreduce.jl

+14-3
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ end
103103
@inbounds return $expr
104104
end
105105
end
106-
106+
107107
@generated function _mapreduce(f, op, dims::Colon, nt::NamedTuple{(:init,)},
108-
::Size{S}, a::StaticArray...) where {S}
108+
::Size{S}, a::StaticArray...) where {S}
109109
expr = :(nt.init)
110110
for i 1:prod(S)
111111
tmp = [:(a[$j][$i]) for j 1:length(a)]
@@ -138,7 +138,7 @@ end
138138
::Size{S}, a::StaticArray) where {S,D}
139139
N = length(S)
140140
Snew = ([n==D ? 1 : S[n] for n = 1:N]...,)
141-
141+
142142
exprs = Array{Expr}(undef, Snew)
143143
itr = [1:n for n Snew]
144144
for i Base.product(itr...)
@@ -190,6 +190,17 @@ end
190190

191191
@inline reduce(op, a::StaticArray; dims=:, kw...) = _reduce(op, a, dims, kw.data)
192192

193+
# disambiguation
194+
reduce(::typeof(vcat), A::StaticArray{<:Tuple,<:AbstractVecOrMat}) =
195+
Base._typed_vcat(mapreduce(eltype, promote_type, A), A)
196+
reduce(::typeof(vcat), A::StaticArray{<:Tuple,<:StaticVecOrMatLike}) =
197+
_reduce(vcat, A, :, NamedTuple())
198+
199+
reduce(::typeof(hcat), A::StaticArray{<:Tuple,<:AbstractVecOrMat}) =
200+
Base._typed_hcat(mapreduce(eltype, promote_type, A), A)
201+
reduce(::typeof(hcat), A::StaticArray{<:Tuple,<:StaticVecOrMatLike}) =
202+
_reduce(hcat, A, :, NamedTuple())
203+
193204
@inline _reduce(op, a::StaticArray, dims, kw::NamedTuple=NamedTuple()) = _mapreduce(identity, op, dims, kw, Size(a), a)
194205

195206
#######################

test/mapreduce.jl

+9
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,13 @@ using Statistics: mean
162162
v = SVector(SVector(3, 2, 1), SVector(5, 7, 9))
163163
@test @inferred(v + v) == SVector(SVector(6, 4, 2), SVector(10, 14, 18))
164164
end
165+
@testset "hcat and vcat" begin
166+
# issue #641
167+
v = SVector([1,2], [3,4])
168+
@test reduce(vcat, v) == [1,2,3,4]
169+
@test reduce(hcat, v) == [1 3; 2 4]
170+
v2 = SVector(SVector(1,2), SVector(3,4))
171+
@test @inferred(reduce(vcat, v2)) === @SVector [1,2,3,4]
172+
@test @inferred(reduce(hcat, v2)) === @SMatrix [1 3; 2 4]
173+
end
165174
end

test/runtests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ using InteractiveUtils
33

44
# Allow no new ambiguities (see #18), unless you fix some old ones first!
55
if VERSION >= v"1.0.0"
6-
@test length(detect_ambiguities(Base, LinearAlgebra, StaticArrays)) <= 7
6+
@test length(detect_ambiguities(Base, LinearAlgebra, StaticArrays)) <= 5
77
end
88

99
# We generate a lot of matrices using rand(), but unit tests should be

0 commit comments

Comments
 (0)