pub struct MegakernelBatchDispatchOutput {
pub batches: Vec<Vec<Vec<u8>>>,
pub stats: MegakernelDispatchStats,
}Expand description
Backend outputs for a resident-handle batch plus aggregate host-side instrumentation.
Fields§
§batches: Vec<Vec<Vec<u8>>>One output-buffer set per submitted resident handle tuple.
stats: MegakernelDispatchStatsAggregate host-side dispatch instrumentation for the whole batch.
Trait Implementations§
Source§impl Clone for MegakernelBatchDispatchOutput
impl Clone for MegakernelBatchDispatchOutput
Source§fn clone(&self) -> MegakernelBatchDispatchOutput
fn clone(&self) -> MegakernelBatchDispatchOutput
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 MegakernelBatchDispatchOutput
Source§impl PartialEq for MegakernelBatchDispatchOutput
impl PartialEq for MegakernelBatchDispatchOutput
Source§fn eq(&self, other: &MegakernelBatchDispatchOutput) -> bool
fn eq(&self, other: &MegakernelBatchDispatchOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MegakernelBatchDispatchOutput
Auto Trait Implementations§
impl Freeze for MegakernelBatchDispatchOutput
impl RefUnwindSafe for MegakernelBatchDispatchOutput
impl Send for MegakernelBatchDispatchOutput
impl Sync for MegakernelBatchDispatchOutput
impl Unpin for MegakernelBatchDispatchOutput
impl UnsafeUnpin for MegakernelBatchDispatchOutput
impl UnwindSafe for MegakernelBatchDispatchOutput
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.