-
Notifications
You must be signed in to change notification settings - Fork 501
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
Implement chunks_exact and chunks_exact_mut #629
Conversation
Hey guys, is there any news on this? I tried having a look at the produced asm code, but couldn't figure out if the |
@seijikun I'm not surprised that it would perform better than |
@cuviper Ah, totally forgot about that. I wasn't able to use it when I decided to use this branch (because of the remainder). Refactored the code to manually pad the data (so that there is no other-sized remainder). |
That's a good point -- the remainder API has value regardless of size-check optimizations. |
Is this still being worked on? |
I think this is ready now -- thanks for the PR, @zesterer! bors r+ |
Follow-up PR from #510.
chunks_exact
(and its mutable counterpart) are not yet implemented onParallelIterator
, onlyParallelSlice
.