We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
rawview
Looks like it's either MappedArrays or Julia Base issue
using ImageCore, BenchmarkTools dst = rawview(channelview(rand(RGB{N0f8}, 64, 64))); src = copy(dst); @btime copyto!($dst, $src); # 1.7.0: 1.209 ms (49152 allocations: 1.69 MiB) # 1.6.5: 55.287 μs (0 allocations: 0 bytes)
The text was updated successfully, but these errors were encountered:
copyto!
julia> dst = rawview(channelview(rand(RGB{N0f8}, 64, 64))); julia> src = copy(dst); julia> @btime copyto!($dst, $src); # 1.7.0: 1.209 ms (49152 allocations: 1.69 MiB) # 1.6.5: 55.287 μs (0 allocations: 0 bytes) 10.125 μs (0 allocations: 0 bytes)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Looks like it's either MappedArrays or Julia Base issue
The text was updated successfully, but these errors were encountered: