We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fec796 commit ea024f0Copy full SHA for ea024f0
portable/src/implementation/simd.rs
@@ -961,8 +961,18 @@ impl basic::imp::ChunkedUtf8Validator for ChunkedUtf8ValidatorImp {
961
}
962
963
964
+#[cfg(not(all(
965
+ any(target_arch = "x86_64", target_arch = "x86"),
966
+ target_feature = "avx2"
967
+)))]
968
pub(crate) use v128 as auto; // FIXME: select based on target feature
969
970
+#[cfg(all(
971
972
973
+))]
974
+pub(crate) use v256 as auto; // FIXME: select based on target feature
975
+
976
pub(crate) mod v128 {
977
/// Validation implementation for CPUs supporting the SIMD extension (see module).
978
///
0 commit comments