Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cat(a, b; dims=1) is slow compared with vcat(a, b) #31183

Open
strickek opened this issue Feb 26, 2019 · 4 comments
Open

cat(a, b; dims=1) is slow compared with vcat(a, b) #31183

strickek opened this issue Feb 26, 2019 · 4 comments
Labels
performance Must go faster

Comments

@strickek
Copy link
Contributor

julia> using BenchmarkTools

julia> a = [1, 2]
2-element Array{Int64,1}:
 1
 2

julia> b = [3, 4]
2-element Array{Int64,1}:
 3
 4

julia> @btime vcat(a, b)
  180.394 ns (1 allocation: 112 bytes)
4-element Array{Int64,1}:
 1
 2
 3
 4

julia> @btime cat(a, b; dims=1)
  44.690 μs (37 allocations: 1.45 KiB)
4-element Array{Int64,1}:
 1
 2
 3
 4

With hcat and dims=2 it is the same story.

@daviehh
Copy link
Contributor

daviehh commented Feb 26, 2019

@code_warntype cat(a, b;dims=1) thinks it's not type-stable;

const c=[1,2]
const d=[3,4]
@btime cat(c, d; dims=1)

531.153 ns (9 allocations: 544 bytes)

bring allocations down but still higher than vcat and runs slower.

@which vcat(a,b)

vcat(arrays::Array{T,1}...) where T in Base at array.jl:1531

@which cat(c,d;dims=2)

(::getfield(Base, Symbol("#kw##cat")))(::Any, ::typeof(cat), A...) in Base

@ararslan ararslan added the performance Must go faster label Feb 28, 2019
@strickek
Copy link
Contributor Author

strickek commented Apr 9, 2019

Maybe related: #30686

@strickek
Copy link
Contributor Author

I checked this topic again with Julia v1.6.0-RC2:
Situation improved for cat() from 37 to 25 allocations.

julia> @btime vcat(a, b)
  50.506 ns (1 allocation: 112 bytes)
4-element Vector{Int64}:
 1
 2
 3
 4

julia> @btime cat(a, b; dims=1)
  1.630 μs (25 allocations: 704 bytes)
4-element Vector{Int64}:
 1
 2
 3
 4

faster is dims=Val(1), see: https://discourse.julialang.org/t/very-slow-loop/53608/24

julia> @btime cat(a, b; dims=Val(1))
  1.290 μs (17 allocations: 528 bytes)
4-element Vector{Int64}:
 1
 2
 3
 4

Conclusion: If possible, use vcat() or hcat()

@vtjnash
Copy link
Member

vtjnash commented Dec 13, 2023

At least the Array allocations are faster and smaller now, so it is somewhat

julia> @btime vcat(a, b)
  41.726 ns (2 allocations: 96 bytes)
4-element Vector{Int64}:
 1
 2
 3
 4

julia> @btime cat(a, b; dims=1)
  825.628 ns (12 allocations: 304 bytes)
4-element Vector{Int64}:
 1
 2
 3
 4

julia> @btime cat(a, b; dims=Val(1))
  42.858 ns (2 allocations: 96 bytes)
4-element Vector{Int64}:
 1
 2
 3
 4

Profile suggests it is due to a lot of dynamic dispatch in the dims=1 case (to compute cshp and such), which could be reduced by forcing dispatch early and converting the dims to type Val

julia> dim = 1; @btime cat(a, b; dims=Val(dim))
  120.839 ns (2 allocations: 96 bytes)
4-element Vector{Int64}:
 1
 2
 3
 4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
performance Must go faster
Projects
None yet
Development

No branches or pull requests

4 participants