pub struct ChildLaunch {
pub kernel_name: String,
pub grid: Dim3,
pub block: Dim3,
pub shared_mem_bytes: usize,
pub completed: bool,
}Expand description
Child kernel launch record
Fields§
§kernel_name: StringKernel name
grid: Dim3Grid dimensions
block: Dim3Block dimensions
Shared memory size
completed: boolWhether execution is complete
Trait Implementations§
Source§impl Clone for ChildLaunch
impl Clone for ChildLaunch
Source§fn clone(&self) -> ChildLaunch
fn clone(&self) -> ChildLaunch
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 moreAuto Trait Implementations§
impl Freeze for ChildLaunch
impl RefUnwindSafe for ChildLaunch
impl Send for ChildLaunch
impl Sync for ChildLaunch
impl Unpin for ChildLaunch
impl UnsafeUnpin for ChildLaunch
impl UnwindSafe for ChildLaunch
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