pub struct MatrixCell {
pub current_value: Option<f64>,
pub current_maxmin_block: Option<f64>,
pub optimal_split: Option<(u32, u32)>,
pub num_gpus_used: Option<u32>,
pub availability_bitset: bitset,
pub gpu_ids: BTreeSet<u32>,
}Fields§
§current_value: Option<f64>§current_maxmin_block: Option<f64>§optimal_split: Option<(u32, u32)>§num_gpus_used: Option<u32>§availability_bitset: bitset§gpu_ids: BTreeSet<u32>Trait Implementations§
Auto Trait Implementations§
impl Freeze for MatrixCell
impl RefUnwindSafe for MatrixCell
impl Send for MatrixCell
impl Sync for MatrixCell
impl Unpin for MatrixCell
impl UnwindSafe for MatrixCell
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