Enum fastiron_stats::structures::processed::ScalingType
source · pub enum ScalingType {
Weak,
Strong(usize),
}
Expand description
Enum used to represent the type of scaling study.
Variants§
Weak
Weak scaling, i.e. the size of the problem grows with the number of threads.
Strong(usize)
Strong scaling, i.e. the size of the problem does not grow with the number of threads.
Auto Trait Implementations§
impl Freeze for ScalingType
impl RefUnwindSafe for ScalingType
impl Send for ScalingType
impl Sync for ScalingType
impl Unpin for ScalingType
impl UnwindSafe for ScalingType
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