-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Comments
bring allocations down but still higher than vcat and runs slower.
|
Maybe related: #30686 |
I checked this topic again with Julia v1.6.0-RC2:
faster is
Conclusion: If possible, use |
At least the Array allocations are faster and smaller now, so it is somewhat
Profile suggests it is due to a lot of dynamic dispatch in the
|
With hcat and dims=2 it is the same story.
The text was updated successfully, but these errors were encountered: