pub struct ExecutableGraphLaunchOperation<'graph> { /* private fields */ }Implementations§
Source§impl ExecutableGraphLaunchOperation<'_>
impl ExecutableGraphLaunchOperation<'_>
Sourcepub fn enqueue(self, stream: &Stream) -> Result<()>
pub fn enqueue(self, stream: &Stream) -> Result<()>
Enqueues this graph launch in stream.
§Errors
Returns an error if CUDA rejects the graph operation, if stream belongs to a different context, if a previous asynchronous launch reported an error, or if CUDA reports runtime initialization diagnostics.
pub const fn graph(&self) -> &ExecutableGraph
Trait Implementations§
Source§impl<'graph> Clone for ExecutableGraphLaunchOperation<'graph>
impl<'graph> Clone for ExecutableGraphLaunchOperation<'graph>
Source§fn clone(&self) -> ExecutableGraphLaunchOperation<'graph>
fn clone(&self) -> ExecutableGraphLaunchOperation<'graph>
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 moreimpl<'graph> Copy for ExecutableGraphLaunchOperation<'graph>
Auto Trait Implementations§
impl<'graph> !RefUnwindSafe for ExecutableGraphLaunchOperation<'graph>
impl<'graph> !Send for ExecutableGraphLaunchOperation<'graph>
impl<'graph> !Sync for ExecutableGraphLaunchOperation<'graph>
impl<'graph> !UnwindSafe for ExecutableGraphLaunchOperation<'graph>
impl<'graph> Freeze for ExecutableGraphLaunchOperation<'graph>
impl<'graph> Unpin for ExecutableGraphLaunchOperation<'graph>
impl<'graph> UnsafeUnpin for ExecutableGraphLaunchOperation<'graph>
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