pub struct MegakernelFrontierExecutionPlan {
pub execution: MegakernelExecutionPlan,
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 execution plan for frontier waves.
Fields§
§execution: MegakernelExecutionPlanTopology and memory-budget plan for the peak barrier-free group.
barriers: MegakernelBarrierPlanMinimum global-barrier grouping for the wave dependencies.
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 fed into topology selection 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 MegakernelFrontierExecutionPlan
impl Clone for MegakernelFrontierExecutionPlan
Source§fn clone(&self) -> MegakernelFrontierExecutionPlan
fn clone(&self) -> MegakernelFrontierExecutionPlan
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 moreimpl Eq for MegakernelFrontierExecutionPlan
impl StructuralPartialEq for MegakernelFrontierExecutionPlan
Auto Trait Implementations§
impl Freeze for MegakernelFrontierExecutionPlan
impl RefUnwindSafe for MegakernelFrontierExecutionPlan
impl Send for MegakernelFrontierExecutionPlan
impl Sync for MegakernelFrontierExecutionPlan
impl Unpin for MegakernelFrontierExecutionPlan
impl UnsafeUnpin for MegakernelFrontierExecutionPlan
impl UnwindSafe for MegakernelFrontierExecutionPlan
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.