pub struct AdaptiveResidentSparseQueuePlan {
pub frontier: AdaptiveResidentFrontierPlan,
pub frontier_nonzero_words: usize,
pub queue_capacity: u32,
pub queue_bytes: usize,
pub queue_grid: [u32; 3],
}Expand description
Primitive-owned resident sparse-queue launch and scratch plan.
Fields§
§frontier: AdaptiveResidentFrontierPlanShared frontier launch and scratch plan.
frontier_nonzero_words: usizePacked frontier words with at least one in-domain active bit.
queue_capacity: u32Active-source queue capacity in u32 node ids.
queue_bytes: usizeNumber of bytes in the resident active-source queue.
queue_grid: [u32; 3]Grid for kernels that process the active-source queue.
Trait Implementations§
Source§impl Clone for AdaptiveResidentSparseQueuePlan
impl Clone for AdaptiveResidentSparseQueuePlan
Source§fn clone(&self) -> AdaptiveResidentSparseQueuePlan
fn clone(&self) -> AdaptiveResidentSparseQueuePlan
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 Copy for AdaptiveResidentSparseQueuePlan
impl Eq for AdaptiveResidentSparseQueuePlan
impl StructuralPartialEq for AdaptiveResidentSparseQueuePlan
Auto Trait Implementations§
impl Freeze for AdaptiveResidentSparseQueuePlan
impl RefUnwindSafe for AdaptiveResidentSparseQueuePlan
impl Send for AdaptiveResidentSparseQueuePlan
impl Sync for AdaptiveResidentSparseQueuePlan
impl Unpin for AdaptiveResidentSparseQueuePlan
impl UnsafeUnpin for AdaptiveResidentSparseQueuePlan
impl UnwindSafe for AdaptiveResidentSparseQueuePlan
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.