pub enum ValidationMode {
Stencil,
Generic,
RingKernel,
}Expand description
Validation mode for different kernel types.
Different kernel patterns have different requirements for what Rust constructs are allowed.
Variants§
Stencil
Stencil kernels: No loops allowed (current behavior). Work is parallelized across threads, so loops would serialize work.
Generic
Generic CUDA kernels: Loops allowed. Useful for kernels that need sequential processing within a thread.
RingKernel
Ring/Actor kernels: Loops required (persistent message loop). These kernels run persistently and process messages in a loop.
Implementations§
Source§impl ValidationMode
impl ValidationMode
Sourcepub fn allows_loops(&self) -> bool
pub fn allows_loops(&self) -> bool
Check if loops are allowed in this validation mode.
Sourcepub fn requires_loops(&self) -> bool
pub fn requires_loops(&self) -> bool
Check if loops are required in this validation mode.
Trait Implementations§
Source§impl Clone for ValidationMode
impl Clone for ValidationMode
Source§fn clone(&self) -> ValidationMode
fn clone(&self) -> ValidationMode
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ValidationMode
impl Debug for ValidationMode
Source§impl Default for ValidationMode
impl Default for ValidationMode
Source§fn default() -> ValidationMode
fn default() -> ValidationMode
Returns the “default value” for a type. Read more
Source§impl PartialEq for ValidationMode
impl PartialEq for ValidationMode
impl Copy for ValidationMode
impl Eq for ValidationMode
impl StructuralPartialEq for ValidationMode
Auto Trait Implementations§
impl Freeze for ValidationMode
impl RefUnwindSafe for ValidationMode
impl Send for ValidationMode
impl Sync for ValidationMode
impl Unpin for ValidationMode
impl UnwindSafe for ValidationMode
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)