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
Partition
I'm not really sure what it's doing that makes it so slow, but it's real bad:
using Transducers julia> let v = rand(10000) @btime foldl(right, Iterators.partition($v, 100)) @btime foldxl(right, $v |> Partition(100)) end; 63.269 ns (1 allocation: 48 bytes) 13.608 ms (159299 allocations: 5.47 MiB)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm not really sure what it's doing that makes it so slow, but it's real bad:
The text was updated successfully, but these errors were encountered: