This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
crates/core_simd/src/vector Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -136,6 +136,9 @@ pub type isizex4 = SimdIsize<4>;
136
136
/// Vector of eight `isize` values
137
137
pub type isizex8 = SimdIsize < 8 > ;
138
138
139
+ /// Vector of two `i16` values
140
+ pub type i16x2 = SimdI16 < 2 > ;
141
+
139
142
/// Vector of four `i16` values
140
143
pub type i16x4 = SimdI16 < 4 > ;
141
144
@@ -169,6 +172,9 @@ pub type i64x4 = SimdI64<4>;
169
172
/// Vector of eight `i64` values
170
173
pub type i64x8 = SimdI64 < 8 > ;
171
174
175
+ /// Vector of four `i8` values
176
+ pub type i8x4 = SimdI8 < 4 > ;
177
+
172
178
/// Vector of eight `i8` values
173
179
pub type i8x8 = SimdI8 < 8 > ;
174
180
Original file line number Diff line number Diff line change @@ -105,6 +105,9 @@ pub type usizex4 = SimdUsize<4>;
105
105
/// Vector of eight `usize` values
106
106
pub type usizex8 = SimdUsize < 8 > ;
107
107
108
+ /// Vector of two `u16` values
109
+ pub type u16x2 = SimdU16 < 2 > ;
110
+
108
111
/// Vector of four `u16` values
109
112
pub type u16x4 = SimdU16 < 4 > ;
110
113
@@ -138,6 +141,9 @@ pub type u64x4 = SimdU64<4>;
138
141
/// Vector of eight `u64` values
139
142
pub type u64x8 = SimdU64 < 8 > ;
140
143
144
+ /// Vector of four `u8` values
145
+ pub type u8x4 = SimdU8 < 4 > ;
146
+
141
147
/// Vector of eight `u8` values
142
148
pub type u8x8 = SimdU8 < 8 > ;
143
149
You can’t perform that action at this time.
0 commit comments