pub struct CudaEGraphStructuralEquivalenceKernelResult {
pub emitted_pair_count: u64,
pub unique: Vec<Equivalence>,
pub device_reported_count: u64,
pub overflowed_output_capacity: bool,
}Expand description
Result produced by launching the structural-equivalence CUDA kernel.
Fields§
§emitted_pair_count: u64Raw emitted e-class pair count before host deduplication and excluding device-side overflow beyond the planned output capacity.
unique: Vec<Equivalence>Unique sorted e-class pairs after host compaction.
device_reported_count: u64Number of pairs reported by the device atomic counter before capping to the planned output capacity.
overflowed_output_capacity: boolWhether device output exceeded the planned output-pair capacity.
Trait Implementations§
Source§impl Clone for CudaEGraphStructuralEquivalenceKernelResult
impl Clone for CudaEGraphStructuralEquivalenceKernelResult
Source§fn clone(&self) -> CudaEGraphStructuralEquivalenceKernelResult
fn clone(&self) -> CudaEGraphStructuralEquivalenceKernelResult
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 PartialEq for CudaEGraphStructuralEquivalenceKernelResult
impl PartialEq for CudaEGraphStructuralEquivalenceKernelResult
Source§fn eq(&self, other: &CudaEGraphStructuralEquivalenceKernelResult) -> bool
fn eq(&self, other: &CudaEGraphStructuralEquivalenceKernelResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CudaEGraphStructuralEquivalenceKernelResult
impl StructuralPartialEq for CudaEGraphStructuralEquivalenceKernelResult
Auto Trait Implementations§
impl Freeze for CudaEGraphStructuralEquivalenceKernelResult
impl RefUnwindSafe for CudaEGraphStructuralEquivalenceKernelResult
impl Send for CudaEGraphStructuralEquivalenceKernelResult
impl Sync for CudaEGraphStructuralEquivalenceKernelResult
impl Unpin for CudaEGraphStructuralEquivalenceKernelResult
impl UnsafeUnpin for CudaEGraphStructuralEquivalenceKernelResult
impl UnwindSafe for CudaEGraphStructuralEquivalenceKernelResult
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.