pub enum PartitionSchedulerScheme {
Offset,
Naive,
}Expand description
Defines how partition indices are scheduled across axes.
Variants§
Offset
Rotates indices per axis to stagger partitions and reduce shared memory conflicts.
Naive
Maps partitions in simple row-major order without rotations.
Auto Trait Implementations§
impl Freeze for PartitionSchedulerScheme
impl RefUnwindSafe for PartitionSchedulerScheme
impl Send for PartitionSchedulerScheme
impl Sync for PartitionSchedulerScheme
impl Unpin for PartitionSchedulerScheme
impl UnwindSafe for PartitionSchedulerScheme
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