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
#31452 introduced a regression in calling iterate on dictionaries as reported by the Nanosoldier run at #31727 (comment).
iterate
On master:
julia> d = Dict(3 => 3); julia> @btime iterate($d); 106.997 ns (2 allocations: 64 bytes)
With #31452 reverted
julia> @btime iterate($d) 3.400 ns (0 allocations: 0 bytes)
cc @JeffBezanson, @ndinsmore
The text was updated successfully, but these errors were encountered:
fix #31760, regression in Dict iterate
833269c
fd0848e
fix #31760, regression in Dict iterate (#31762)
9115c82
(cherry picked from commit fd0848e)
JeffBezanson
No branches or pull requests
#31452 introduced a regression in calling
iterate
on dictionaries as reported by the Nanosoldier run at #31727 (comment).On master:
With #31452 reverted
cc @JeffBezanson, @ndinsmore
The text was updated successfully, but these errors were encountered: