pub struct MegakernelFrontierMemoryPlan {
pub barriers: MegakernelBarrierPlan,
pub peak_frontier_bytes: u64,
pub peak_scratch_bytes: u64,
pub peak_output_bytes: u64,
pub amortized_readback_bytes: u64,
pub max_group_width: usize,
}Expand description
Dependency-aware megakernel frontier memory plan.
Fields§
§barriers: MegakernelBarrierPlanMinimum global-barrier grouping after memory-budget splitting.
peak_frontier_bytes: u64Peak frontier bytes across any fused barrier-free group.
peak_scratch_bytes: u64Peak scratch bytes across any fused barrier-free group.
peak_output_bytes: u64Peak output bytes across any fused barrier-free group.
amortized_readback_bytes: u64Readback pressure after combining runtime telemetry with static fused-wave output volume.
max_group_width: usizeWidest barrier-free group in wave count.
Trait Implementations§
Source§impl Clone for MegakernelFrontierMemoryPlan
impl Clone for MegakernelFrontierMemoryPlan
Source§fn clone(&self) -> MegakernelFrontierMemoryPlan
fn clone(&self) -> MegakernelFrontierMemoryPlan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MegakernelFrontierMemoryPlan
impl Debug for MegakernelFrontierMemoryPlan
impl Eq for MegakernelFrontierMemoryPlan
Source§impl PartialEq for MegakernelFrontierMemoryPlan
impl PartialEq for MegakernelFrontierMemoryPlan
Source§fn eq(&self, other: &MegakernelFrontierMemoryPlan) -> bool
fn eq(&self, other: &MegakernelFrontierMemoryPlan) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MegakernelFrontierMemoryPlan
Auto Trait Implementations§
impl Freeze for MegakernelFrontierMemoryPlan
impl RefUnwindSafe for MegakernelFrontierMemoryPlan
impl Send for MegakernelFrontierMemoryPlan
impl Sync for MegakernelFrontierMemoryPlan
impl Unpin for MegakernelFrontierMemoryPlan
impl UnsafeUnpin for MegakernelFrontierMemoryPlan
impl UnwindSafe for MegakernelFrontierMemoryPlan
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§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.