Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit c077bf3

Browse files
committed
Rename SimdArray to Vector, remove its generic parameter, and remove LanesAtMost32
1 parent 732b7ed commit c077bf3

File tree

23 files changed

+450
-505
lines changed

23 files changed

+450
-505
lines changed

crates/core_simd/src/array.rs

Lines changed: 0 additions & 253 deletions
This file was deleted.

crates/core_simd/src/comparisons.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
use crate::LanesAtMost32;
1+
use crate::Vector;
22

33
macro_rules! implement_mask_ops {
44
{ $($vector:ident => $mask:ident ($inner_ty:ident),)* } => {
55
$(
66
impl<const LANES: usize> crate::$vector<LANES>
77
where
8-
crate::$vector<LANES>: LanesAtMost32,
9-
crate::$inner_ty<LANES>: LanesAtMost32,
8+
crate::$vector<LANES>: Vector,
9+
crate::$inner_ty<LANES>: Vector,
1010
crate::$mask<LANES>: crate::Mask,
1111
{
1212
/// Test if each lane is equal to the corresponding lane in `other`.

0 commit comments

Comments
 (0)