tustvold commented on code in PR #5184:
URL: https://github.com/apache/arrow-rs/pull/5184#discussion_r1419272720
##########
arrow-buffer/src/util/bit_util.rs:
##########
@@ -104,31 +101,13 @@ pub fn ceil(value: usize, divisor: usize) -> usize {
value / divisor + (0 != value % divisor) as usize
}
-/// Performs SIMD bitwise binary operations.
-///
-/// # Safety
-///
-/// Note that each slice should be 64 bytes and it is the callers
responsibility to ensure
-/// that this is the case. If passed slices larger than 64 bytes the
operation will only
-/// be performed on the first 64 bytes. Slices less than 64 bytes will panic.
-#[cfg(feature = "simd")]
Review Comment:
Interestingly arrow-buffer doesn't have a SIMD feature, so this has been
silently not present by accident for a while
--
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]