Enum cubecl_core::frontend::ArrayArg

source ·
pub enum ArrayArg<'a, R: Runtime> {
    Handle {
        handle: ArrayHandleRef<'a, R>,
        vectorization_factor: u8,
    },
    Alias {
        input_pos: usize,
    },
}

Variants§

§

Handle

The array is passed with an array handle.

Fields

§handle: ArrayHandleRef<'a, R>

The array handle.

§vectorization_factor: u8

The vectorization factor.

§

Alias

The array is aliasing another input array.

Fields

§input_pos: usize

The position of the input array.

Implementations§

source§

impl<'a, R: Runtime> ArrayArg<'a, R>

source

pub unsafe fn from_raw_parts( handle: &'a Handle<R::Server>, length: usize, vectorization_factor: u8, ) -> Self

Create a new array argument.

§Safety

Specifying the wrong lenght may lead to out-of-bounds reads and writes.

Trait Implementations§

source§

impl<'a, R: Runtime> ArgSettings<R> for ArrayArg<'a, R>

source§

fn register(&self, launcher: &mut KernelLauncher<R>)

Register the information to the KernelLauncher.
source§

fn configure_input( &self, position: usize, settings: KernelSettings, ) -> KernelSettings

Configure an input argument at the given position.
source§

fn configure_output( &self, position: usize, settings: KernelSettings, ) -> KernelSettings

Configure an output argument at the given position.

Auto Trait Implementations§

§

impl<'a, R> Freeze for ArrayArg<'a, R>

§

impl<'a, R> RefUnwindSafe for ArrayArg<'a, R>

§

impl<'a, R> Send for ArrayArg<'a, R>

§

impl<'a, R> Sync for ArrayArg<'a, R>

§

impl<'a, R> Unpin for ArrayArg<'a, R>

§

impl<'a, R> UnwindSafe for ArrayArg<'a, R>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V