pub struct CudaEGraphSignatureRefreshKernelPtx {
pub target_sm: u32,
pub ptx_version: &'static str,
pub entry_name: &'static str,
pub parameter_count: usize,
pub source: String,
}Expand description
PTX source and ABI metadata for the row-signature refresh 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.
source: StringComplete PTX source.
Trait Implementations§
Source§impl Clone for CudaEGraphSignatureRefreshKernelPtx
impl Clone for CudaEGraphSignatureRefreshKernelPtx
Source§fn clone(&self) -> CudaEGraphSignatureRefreshKernelPtx
fn clone(&self) -> CudaEGraphSignatureRefreshKernelPtx
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 CudaEGraphSignatureRefreshKernelPtx
impl PartialEq for CudaEGraphSignatureRefreshKernelPtx
Source§fn eq(&self, other: &CudaEGraphSignatureRefreshKernelPtx) -> bool
fn eq(&self, other: &CudaEGraphSignatureRefreshKernelPtx) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CudaEGraphSignatureRefreshKernelPtx
impl StructuralPartialEq for CudaEGraphSignatureRefreshKernelPtx
Auto Trait Implementations§
impl Freeze for CudaEGraphSignatureRefreshKernelPtx
impl RefUnwindSafe for CudaEGraphSignatureRefreshKernelPtx
impl Send for CudaEGraphSignatureRefreshKernelPtx
impl Sync for CudaEGraphSignatureRefreshKernelPtx
impl Unpin for CudaEGraphSignatureRefreshKernelPtx
impl UnsafeUnpin for CudaEGraphSignatureRefreshKernelPtx
impl UnwindSafe for CudaEGraphSignatureRefreshKernelPtx
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.