pub enum WorkgroupReductionScope {
EveryWorkgroup,
FirstWorkgroup,
}Expand description
Scope for a workgroup-local reduction.
Variants§
EveryWorkgroup
Every dispatched workgroup reduces its own scratch buffer.
FirstWorkgroup
Only workgroup x == 0 participates in the reduction.
Trait Implementations§
Source§impl Clone for WorkgroupReductionScope
impl Clone for WorkgroupReductionScope
Source§fn clone(&self) -> WorkgroupReductionScope
fn clone(&self) -> WorkgroupReductionScope
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 Copy for WorkgroupReductionScope
Source§impl Debug for WorkgroupReductionScope
impl Debug for WorkgroupReductionScope
impl Eq for WorkgroupReductionScope
Source§impl PartialEq for WorkgroupReductionScope
impl PartialEq for WorkgroupReductionScope
impl StructuralPartialEq for WorkgroupReductionScope
Auto Trait Implementations§
impl Freeze for WorkgroupReductionScope
impl RefUnwindSafe for WorkgroupReductionScope
impl Send for WorkgroupReductionScope
impl Sync for WorkgroupReductionScope
impl Unpin for WorkgroupReductionScope
impl UnsafeUnpin for WorkgroupReductionScope
impl UnwindSafe for WorkgroupReductionScope
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.