pub struct SimdBenchmark;Expand description
Performance benchmarking utilities for SIMD operations
Implementations§
Source§impl SimdBenchmark
impl SimdBenchmark
Sourcepub fn benchmark_mul_strategies(
array_size: usize,
iterations: usize,
) -> Result<BenchmarkResults>
pub fn benchmark_mul_strategies( array_size: usize, iterations: usize, ) -> Result<BenchmarkResults>
Benchmark all SIMD multiplication strategies and return performance data
Auto Trait Implementations§
impl Freeze for SimdBenchmark
impl RefUnwindSafe for SimdBenchmark
impl Send for SimdBenchmark
impl Sync for SimdBenchmark
impl Unpin for SimdBenchmark
impl UnsafeUnpin for SimdBenchmark
impl UnwindSafe for SimdBenchmark
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more