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

Memory allocation with copyto! in some circumstances #120

Open
junyuan-chen opened this issue Mar 9, 2023 · 0 comments
Open

Memory allocation with copyto! in some circumstances #120

junyuan-chen opened this issue Mar 9, 2023 · 0 comments

Comments

@junyuan-chen
Copy link

I notice that copyto! sometimes allocates. I guess this could be avoided by simply adding @inline in front of the copyto!s?

Here is an example with BlockArrays:

using BenchmarkTools
using BlockArrays
dest = rand(4, 4)
src = BlockMatrix(rand(4, 4), [2, 2], [2, 2])
@btime copyto!($dest, $src)

Staring from a fresh Julia session, the above results in one allocation:

julia> @btime copyto!($dest, $src)
  87.933 ns (1 allocation: 48 bytes)

There is no allocation if I do the following, which is exactly what copyto! does:

using ArrayLayouts: MemoryLayout, _copyto!
@btime _copyto!(MemoryLayout($dest), MemoryLayout($src), $dest, $src)
julia> @btime _copyto!(MemoryLayout($dest), MemoryLayout($src), $dest, $src)
  73.099 ns (0 allocations: 0 bytes)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant