HippoBaro commented on code in PR #9848:
URL: https://github.com/apache/arrow-rs/pull/9848#discussion_r3368617147
##########
parquet/src/util/bit_util.rs:
##########
@@ -786,6 +786,30 @@ impl From<Vec<u8>> for BitReader {
}
}
+/// Portable parallel bit extract: for each set bit in `mask`, extract
+/// the corresponding bit from `value` and pack them contiguously into
+/// the low bits of the return value.
+///
+/// Equivalent to the x86 BMI2 `PEXT` instruction.
+///
+/// Replace with `value.compress(mask)` when `uint_gather_scatter_bits`
+/// is stabilised: <https://github.com/rust-lang/rust/issues/149069>
+#[inline]
+#[cfg(feature = "arrow")]
+pub(crate) fn compress(value: u64, mut mask: u64) -> u64 {
Review Comment:
Done! `compress` now uses `_pext_u64` when compiled under
`#[cfg(all(target_arch = "x86_64", target_feature = "bmi2"))]`.
Please note that my laptop is arm so I'm unable to directly test this
myself, and I'm unsure what CI is running on.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]