pub struct KernelNode {
pub node: CUgraphNode,
pub params: CUDA_KERNEL_NODE_PARAMS,
pub name: String,
}Expand description
One kernel node of a captured graph: raw node handle, its full launch params
(grid/block/smem + driver-owned kernelParams staging), and the resolved symbol name.
Fields§
§node: CUgraphNode§params: CUDA_KERNEL_NODE_PARAMS§name: StringTrait Implementations§
impl Send for KernelNode
Auto Trait Implementations§
impl !Sync for KernelNode
impl Freeze for KernelNode
impl RefUnwindSafe for KernelNode
impl Unpin for KernelNode
impl UnsafeUnpin for KernelNode
impl UnwindSafe for KernelNode
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