pub struct BenchReport {Show 13 fields
pub direction: TransformDir,
pub n_fft: usize,
pub batch: usize,
pub iters: usize,
pub device: Device,
pub butterfly_weights: String,
pub rustfft_ms: f64,
pub rlx_fft_ms: f64,
pub butterfly_eager_ms: f64,
pub butterfly_compiled_ms: f64,
pub rlx_fft_err: f32,
pub butterfly_eager_err: f32,
pub butterfly_compiled_err: f32,
}Fields§
§direction: TransformDir§n_fft: usize§batch: usize§iters: usize§device: Device§butterfly_weights: Stringexact twiddles or learned checkpoint.
rustfft_ms: f64§rlx_fft_ms: f64§butterfly_eager_ms: f64§butterfly_compiled_ms: f64§rlx_fft_err: f32§butterfly_eager_err: f32§butterfly_compiled_err: f32Trait Implementations§
Source§impl Clone for BenchReport
impl Clone for BenchReport
Source§fn clone(&self) -> BenchReport
fn clone(&self) -> BenchReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BenchReport
impl RefUnwindSafe for BenchReport
impl Send for BenchReport
impl Sync for BenchReport
impl Unpin for BenchReport
impl UnsafeUnpin for BenchReport
impl UnwindSafe for BenchReport
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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