pub struct ComputePass { /* private fields */ }Expand description
Records a sequence of kernel dispatches for batched execution.
Compute passes accumulate dispatch commands and execute them in order.
Implementations§
Source§impl ComputePass
impl ComputePass
Sourcepub fn num_commands(&self) -> usize
pub fn num_commands(&self) -> usize
Return the number of recorded commands.
Sourcepub fn total_work_items(&self) -> usize
pub fn total_work_items(&self) -> usize
Total work items across all recorded dispatches.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ComputePass
impl RefUnwindSafe for ComputePass
impl Send for ComputePass
impl Sync for ComputePass
impl Unpin for ComputePass
impl UnsafeUnpin for ComputePass
impl UnwindSafe for ComputePass
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more