Skip to content

Commit 473361a

Browse files
committed
simplify, use v128 for now
1 parent ef1c44b commit 473361a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

portable/src/implementation/simd.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,6 @@ trait Lookup16 {
199199
trait SimdU8Value<const N: usize>
200200
where
201201
LaneCount<N>: SupportedLaneCount,
202-
Self: Copy,
203-
Self: Lookup16,
204202
{
205203
#[expect(clippy::too_many_arguments)]
206204
fn from_32_cut_off_leading(
@@ -961,7 +959,7 @@ impl basic::imp::ChunkedUtf8Validator for ChunkedUtf8ValidatorImp {
961959
}
962960
}
963961

964-
pub(crate) use v256 as auto; // FIXME: select based on target feature
962+
pub(crate) use v128 as auto; // FIXME: select based on target feature
965963

966964
pub(crate) mod v128 {
967965
/// Validation implementation for CPUs supporting the SIMD extension (see module).

0 commit comments

Comments
 (0)