pub struct CudaEGraphStructuralEquivalenceKernelPtx {
pub target_sm: u32,
pub ptx_version: &'static str,
pub entry_name: &'static str,
pub parameter_count: usize,
pub bucket_record_words: usize,
pub source: String,
}Expand description
PTX source and ABI metadata for the structural-equivalence kernel.
Fields§
§target_sm: u32CUDA SM target used by the PTX preamble.
ptx_version: &'static strPTX ISA version emitted in the preamble.
entry_name: &'static strEntry symbol resolved by the CUDA module loader.
parameter_count: usizeNumber of kernel parameters in the ABI.
bucket_record_words: usizeNumber of u32 words per signature-bucket record.
source: StringComplete PTX source.
Trait Implementations§
Source§impl Clone for CudaEGraphStructuralEquivalenceKernelPtx
impl Clone for CudaEGraphStructuralEquivalenceKernelPtx
Source§fn clone(&self) -> CudaEGraphStructuralEquivalenceKernelPtx
fn clone(&self) -> CudaEGraphStructuralEquivalenceKernelPtx
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 CudaEGraphStructuralEquivalenceKernelPtx
impl PartialEq for CudaEGraphStructuralEquivalenceKernelPtx
Source§fn eq(&self, other: &CudaEGraphStructuralEquivalenceKernelPtx) -> bool
fn eq(&self, other: &CudaEGraphStructuralEquivalenceKernelPtx) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CudaEGraphStructuralEquivalenceKernelPtx
impl StructuralPartialEq for CudaEGraphStructuralEquivalenceKernelPtx
Auto Trait Implementations§
impl Freeze for CudaEGraphStructuralEquivalenceKernelPtx
impl RefUnwindSafe for CudaEGraphStructuralEquivalenceKernelPtx
impl Send for CudaEGraphStructuralEquivalenceKernelPtx
impl Sync for CudaEGraphStructuralEquivalenceKernelPtx
impl Unpin for CudaEGraphStructuralEquivalenceKernelPtx
impl UnsafeUnpin for CudaEGraphStructuralEquivalenceKernelPtx
impl UnwindSafe for CudaEGraphStructuralEquivalenceKernelPtx
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.