enum Kind {
Sse,
Avx2,
Avx512,
}Expand description
Which SIMD implementation to use, chosen once at construction from the CPU’s features.
Variants§
Sse
128-bit PCLMULQDQ, fold by 4.
Avx2
256-bit VPCLMULQDQ, 8 streams.
Avx512
512-bit VPCLMULQDQ, 16 streams.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Kind
impl RefUnwindSafe for Kind
impl Send for Kind
impl Sync for Kind
impl Unpin for Kind
impl UnsafeUnpin for Kind
impl UnwindSafe for Kind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more