You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/01/23 14:18:38 UTC

[GitHub] [arrow-rs] tustvold opened a new issue #1227: UnalignedBitChunkIterator

tustvold opened a new issue #1227:
URL: https://github.com/apache/arrow-rs/issues/1227


   **Is your feature request related to a problem or challenge? Please describe what you are trying to do.**
   
   `BitChunks` and the associated `BitChunkIterator` allow iterating over a bitmask in u64 sized blocks. Unfortunately this comes at the cost of unaligned reads, and non-trivial bit-shuffling for every u64 block. This is advantageous when alignment is important, for example when writing the data to another buffer, but is unnecessary when computing bit counts or set bit offsets.
   
   **Describe the solution you'd like**
   
   Add an `UnalignedBitChunkIterator` that iterates through already aligned u64 blocks, potentially with padding either side. `SlicesIterator` should then be updated to use this.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-rs] alamb closed issue #1227: UnalignedBitChunkIterator

Posted by GitBox <gi...@apache.org>.
alamb closed issue #1227:
URL: https://github.com/apache/arrow-rs/issues/1227


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org