pub struct CsrQueueSplitLowForwardParams<'a> {Show 14 fields
pub active_queue: &'a str,
pub queue_len: &'a str,
pub edge_offsets: &'a str,
pub edge_targets: &'a str,
pub edge_kind_mask: &'a str,
pub frontier_out: &'a str,
pub high_queue: &'a str,
pub high_len: &'a str,
pub node_count: u32,
pub edge_count: u32,
pub queue_capacity: u32,
pub high_queue_capacity: u32,
pub high_degree_threshold: u32,
pub allow_mask: u32,
}Expand description
Positional inputs for csr_queue_split_low_forward_traverse.
Fields§
§active_queue: &'a strCompacted queue of active source nodes.
queue_len: &'a strSingle-element resident length of active_queue.
edge_offsets: &'a strCSR row pointers, node_count + 1 entries.
edge_targets: &'a strCSR edge destinations.
edge_kind_mask: &'a strPer-edge kind bits tested against allow_mask.
frontier_out: &'a strPacked bitset the reached destinations are ORed into.
high_queue: &'a strCompact queue collecting hub sources for a later row-strided pass.
high_len: &'a strSingle-element observed hub count, which may exceed the capacity.
node_count: u32Node count the CSR row pointers and destination bounds are sized by.
edge_count: u32Logical edge count the edge-slot bound check uses.
queue_capacity: u32Static capacity of active_queue.
high_queue_capacity: u32Static capacity of high_queue.
high_degree_threshold: u32Row degree at which a source is worth a 32-lane team.
allow_mask: u32Edge kinds this traversal is allowed to follow.
Trait Implementations§
Source§impl<'a> Clone for CsrQueueSplitLowForwardParams<'a>
impl<'a> Clone for CsrQueueSplitLowForwardParams<'a>
Source§fn clone(&self) -> CsrQueueSplitLowForwardParams<'a>
fn clone(&self) -> CsrQueueSplitLowForwardParams<'a>
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<'a> Copy for CsrQueueSplitLowForwardParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for CsrQueueSplitLowForwardParams<'a>
impl<'a> RefUnwindSafe for CsrQueueSplitLowForwardParams<'a>
impl<'a> Send for CsrQueueSplitLowForwardParams<'a>
impl<'a> Sync for CsrQueueSplitLowForwardParams<'a>
impl<'a> Unpin for CsrQueueSplitLowForwardParams<'a>
impl<'a> UnsafeUnpin for CsrQueueSplitLowForwardParams<'a>
impl<'a> UnwindSafe for CsrQueueSplitLowForwardParams<'a>
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