pub struct Bounds<B: TimeBound> {
pub bounds: Vec<B>,
pub launch_overhead: Duration,
}Expand description
A set of AutotuneBounds for a given key and reference inputs, with a launch overhead.
Fields§
§bounds: Vec<B>The bounds for autotuning.
launch_overhead: DurationThe launch overhead for autotuning.
Trait Implementations§
Auto Trait Implementations§
impl<B> Freeze for Bounds<B>
impl<B> RefUnwindSafe for Bounds<B>where
B: RefUnwindSafe,
impl<B> Send for Bounds<B>where
B: Send,
impl<B> Sync for Bounds<B>where
B: Sync,
impl<B> Unpin for Bounds<B>where
B: Unpin,
impl<B> UnsafeUnpin for Bounds<B>
impl<B> UnwindSafe for Bounds<B>where
B: UnwindSafe,
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