-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Wrapping an Array in a struct allocates #34871
Comments
But
|
Just seems like bad benchmarking? julia> g(m) = (Foo(m); nothing)
g (generic function with 1 method)
julia> @btime g($m)
0.035 ns (0 allocations: 0 bytes) If you return the object it needs to be allocated? |
Ah, I see. But still why the difference betweek |
Because one is |
Will be closed by #34126 |
Duplicate of #14955 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Consider:
Output:
It doesn't seem like
Foo(m)
should allocate whenFoo(k)
can avoid it.The text was updated successfully, but these errors were encountered: