pub struct GlobalMemoryConfig {
pub elements_in_tile_row: u32,
pub elements_in_tile_col: u32,
pub elements_in_stage_row: u32,
pub elements_in_stage_col: u32,
pub global_line_size: u32,
pub check_row_bounds: bool,
pub check_col_bounds: bool,
pub matrix_layout: MatrixLayout,
}Fields§
§elements_in_tile_row: u32§elements_in_tile_col: u32§elements_in_stage_row: u32§elements_in_stage_col: u32§global_line_size: u32§check_row_bounds: bool§check_col_bounds: bool§matrix_layout: MatrixLayoutTrait Implementations§
Source§impl Clone for GlobalMemoryConfig
impl Clone for GlobalMemoryConfig
Source§fn clone(&self) -> GlobalMemoryConfig
fn clone(&self) -> GlobalMemoryConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GlobalMemoryConfig
impl Debug for GlobalMemoryConfig
Source§impl Default for GlobalMemoryConfig
impl Default for GlobalMemoryConfig
Source§fn default() -> GlobalMemoryConfig
fn default() -> GlobalMemoryConfig
Returns the “default value” for a type. Read more
Source§impl From<GlobalMemoryConfig> for GlobalLayoutConfig
impl From<GlobalMemoryConfig> for GlobalLayoutConfig
Source§fn from(value: GlobalMemoryConfig) -> Self
fn from(value: GlobalMemoryConfig) -> Self
Converts to this type from the input type.
Source§impl Hash for GlobalMemoryConfig
impl Hash for GlobalMemoryConfig
Source§impl PartialEq for GlobalMemoryConfig
impl PartialEq for GlobalMemoryConfig
impl Copy for GlobalMemoryConfig
impl Eq for GlobalMemoryConfig
impl StructuralPartialEq for GlobalMemoryConfig
Auto Trait Implementations§
impl Freeze for GlobalMemoryConfig
impl RefUnwindSafe for GlobalMemoryConfig
impl Send for GlobalMemoryConfig
impl Sync for GlobalMemoryConfig
impl Unpin for GlobalMemoryConfig
impl UnwindSafe for GlobalMemoryConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.