LaunchArg

Trait LaunchArg 

Source
pub trait LaunchArg:
    CubeType
    + Send
    + Sync
    + 'static {
    type RuntimeArg<'a, R: Runtime>: ArgSettings<R>;
    type CompilationArg: CompilationArg;

    // Required methods
    fn compilation_arg<R: Runtime>(
        runtime_arg: &Self::RuntimeArg<'_, R>,
    ) -> Self::CompilationArg;
    fn expand(
        arg: &Self::CompilationArg,
        builder: &mut KernelBuilder,
    ) -> <Self as CubeType>::ExpandType;

    // Provided method
    fn expand_output(
        arg: &Self::CompilationArg,
        builder: &mut KernelBuilder,
    ) -> <Self as CubeType>::ExpandType { ... }
}
Expand description

Defines how a launch argument can be expanded.

TODO Verify the accuracy of the next comment.

Normally this type should be implemented two times for an argument. Once for the reference and the other for the mutable reference. Often time, the reference should expand the argument as an input while the mutable reference should expand the argument as an output.

Required Associated Types§

Source

type RuntimeArg<'a, R: Runtime>: ArgSettings<R>

The runtime argument for the kernel.

Source

type CompilationArg: CompilationArg

Compilation argument.

Required Methods§

Source

fn compilation_arg<R: Runtime>( runtime_arg: &Self::RuntimeArg<'_, R>, ) -> Self::CompilationArg

Source

fn expand( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> <Self as CubeType>::ExpandType

Register an input variable during compilation that fill the KernelBuilder.

Provided Methods§

Source

fn expand_output( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> <Self as CubeType>::ExpandType

Register an output variable during compilation that fill the KernelBuilder.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl LaunchArg for ()

Source§

type RuntimeArg<'a, R: Runtime> = ()

Source§

type CompilationArg = ()

Source§

fn compilation_arg<'a, R: Runtime>( _runtime_arg: &'a Self::RuntimeArg<'a, R>, ) -> Self::CompilationArg

Source§

fn expand( _: &Self::CompilationArg, _builder: &mut KernelBuilder, ) -> <Self as CubeType>::ExpandType

Source§

impl<T0: LaunchArg, T1: LaunchArg> LaunchArg for (T0, T1)

Source§

type RuntimeArg<'a, R: Runtime> = (<T0 as LaunchArg>::RuntimeArg<'a, R>, <T1 as LaunchArg>::RuntimeArg<'a, R>)

Source§

type CompilationArg = (<T0 as LaunchArg>::CompilationArg, <T1 as LaunchArg>::CompilationArg)

Source§

fn compilation_arg<R: Runtime>( runtime_arg: &Self::RuntimeArg<'_, R>, ) -> Self::CompilationArg

Source§

fn expand( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType)

Source§

fn expand_output( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType)

Source§

impl<T0: LaunchArg, T1: LaunchArg, T2: LaunchArg> LaunchArg for (T0, T1, T2)

Source§

type RuntimeArg<'a, R: Runtime> = (<T0 as LaunchArg>::RuntimeArg<'a, R>, <T1 as LaunchArg>::RuntimeArg<'a, R>, <T2 as LaunchArg>::RuntimeArg<'a, R>)

Source§

type CompilationArg = (<T0 as LaunchArg>::CompilationArg, <T1 as LaunchArg>::CompilationArg, <T2 as LaunchArg>::CompilationArg)

Source§

fn compilation_arg<R: Runtime>( runtime_arg: &Self::RuntimeArg<'_, R>, ) -> Self::CompilationArg

Source§

fn expand( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType)

Source§

fn expand_output( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType)

Source§

impl<T0: LaunchArg, T1: LaunchArg, T2: LaunchArg, T3: LaunchArg> LaunchArg for (T0, T1, T2, T3)

Source§

type RuntimeArg<'a, R: Runtime> = (<T0 as LaunchArg>::RuntimeArg<'a, R>, <T1 as LaunchArg>::RuntimeArg<'a, R>, <T2 as LaunchArg>::RuntimeArg<'a, R>, <T3 as LaunchArg>::RuntimeArg<'a, R>)

Source§

type CompilationArg = (<T0 as LaunchArg>::CompilationArg, <T1 as LaunchArg>::CompilationArg, <T2 as LaunchArg>::CompilationArg, <T3 as LaunchArg>::CompilationArg)

Source§

fn compilation_arg<R: Runtime>( runtime_arg: &Self::RuntimeArg<'_, R>, ) -> Self::CompilationArg

Source§

fn expand( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType)

Source§

fn expand_output( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType)

Source§

impl<T0: LaunchArg, T1: LaunchArg, T2: LaunchArg, T3: LaunchArg, T4: LaunchArg> LaunchArg for (T0, T1, T2, T3, T4)

Source§

type RuntimeArg<'a, R: Runtime> = (<T0 as LaunchArg>::RuntimeArg<'a, R>, <T1 as LaunchArg>::RuntimeArg<'a, R>, <T2 as LaunchArg>::RuntimeArg<'a, R>, <T3 as LaunchArg>::RuntimeArg<'a, R>, <T4 as LaunchArg>::RuntimeArg<'a, R>)

Source§

type CompilationArg = (<T0 as LaunchArg>::CompilationArg, <T1 as LaunchArg>::CompilationArg, <T2 as LaunchArg>::CompilationArg, <T3 as LaunchArg>::CompilationArg, <T4 as LaunchArg>::CompilationArg)

Source§

fn compilation_arg<R: Runtime>( runtime_arg: &Self::RuntimeArg<'_, R>, ) -> Self::CompilationArg

Source§

fn expand( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType)

Source§

fn expand_output( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType)

Source§

impl<T0: LaunchArg, T1: LaunchArg, T2: LaunchArg, T3: LaunchArg, T4: LaunchArg, T5: LaunchArg> LaunchArg for (T0, T1, T2, T3, T4, T5)

Source§

type RuntimeArg<'a, R: Runtime> = (<T0 as LaunchArg>::RuntimeArg<'a, R>, <T1 as LaunchArg>::RuntimeArg<'a, R>, <T2 as LaunchArg>::RuntimeArg<'a, R>, <T3 as LaunchArg>::RuntimeArg<'a, R>, <T4 as LaunchArg>::RuntimeArg<'a, R>, <T5 as LaunchArg>::RuntimeArg<'a, R>)

Source§

type CompilationArg = (<T0 as LaunchArg>::CompilationArg, <T1 as LaunchArg>::CompilationArg, <T2 as LaunchArg>::CompilationArg, <T3 as LaunchArg>::CompilationArg, <T4 as LaunchArg>::CompilationArg, <T5 as LaunchArg>::CompilationArg)

Source§

fn compilation_arg<R: Runtime>( runtime_arg: &Self::RuntimeArg<'_, R>, ) -> Self::CompilationArg

Source§

fn expand( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType, <T5 as CubeType>::ExpandType)

Source§

fn expand_output( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType, <T5 as CubeType>::ExpandType)

Source§

impl<T0: LaunchArg, T1: LaunchArg, T2: LaunchArg, T3: LaunchArg, T4: LaunchArg, T5: LaunchArg, T6: LaunchArg> LaunchArg for (T0, T1, T2, T3, T4, T5, T6)

Source§

type RuntimeArg<'a, R: Runtime> = (<T0 as LaunchArg>::RuntimeArg<'a, R>, <T1 as LaunchArg>::RuntimeArg<'a, R>, <T2 as LaunchArg>::RuntimeArg<'a, R>, <T3 as LaunchArg>::RuntimeArg<'a, R>, <T4 as LaunchArg>::RuntimeArg<'a, R>, <T5 as LaunchArg>::RuntimeArg<'a, R>, <T6 as LaunchArg>::RuntimeArg<'a, R>)

Source§

type CompilationArg = (<T0 as LaunchArg>::CompilationArg, <T1 as LaunchArg>::CompilationArg, <T2 as LaunchArg>::CompilationArg, <T3 as LaunchArg>::CompilationArg, <T4 as LaunchArg>::CompilationArg, <T5 as LaunchArg>::CompilationArg, <T6 as LaunchArg>::CompilationArg)

Source§

fn compilation_arg<R: Runtime>( runtime_arg: &Self::RuntimeArg<'_, R>, ) -> Self::CompilationArg

Source§

fn expand( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType, <T5 as CubeType>::ExpandType, <T6 as CubeType>::ExpandType)

Source§

fn expand_output( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType, <T5 as CubeType>::ExpandType, <T6 as CubeType>::ExpandType)

Source§

impl<T0: LaunchArg, T1: LaunchArg, T2: LaunchArg, T3: LaunchArg, T4: LaunchArg, T5: LaunchArg, T6: LaunchArg, T7: LaunchArg> LaunchArg for (T0, T1, T2, T3, T4, T5, T6, T7)

Source§

type RuntimeArg<'a, R: Runtime> = (<T0 as LaunchArg>::RuntimeArg<'a, R>, <T1 as LaunchArg>::RuntimeArg<'a, R>, <T2 as LaunchArg>::RuntimeArg<'a, R>, <T3 as LaunchArg>::RuntimeArg<'a, R>, <T4 as LaunchArg>::RuntimeArg<'a, R>, <T5 as LaunchArg>::RuntimeArg<'a, R>, <T6 as LaunchArg>::RuntimeArg<'a, R>, <T7 as LaunchArg>::RuntimeArg<'a, R>)

Source§

type CompilationArg = (<T0 as LaunchArg>::CompilationArg, <T1 as LaunchArg>::CompilationArg, <T2 as LaunchArg>::CompilationArg, <T3 as LaunchArg>::CompilationArg, <T4 as LaunchArg>::CompilationArg, <T5 as LaunchArg>::CompilationArg, <T6 as LaunchArg>::CompilationArg, <T7 as LaunchArg>::CompilationArg)

Source§

fn compilation_arg<R: Runtime>( runtime_arg: &Self::RuntimeArg<'_, R>, ) -> Self::CompilationArg

Source§

fn expand( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType, <T5 as CubeType>::ExpandType, <T6 as CubeType>::ExpandType, <T7 as CubeType>::ExpandType)

Source§

fn expand_output( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType, <T5 as CubeType>::ExpandType, <T6 as CubeType>::ExpandType, <T7 as CubeType>::ExpandType)

Source§

impl<T0: LaunchArg, T1: LaunchArg, T2: LaunchArg, T3: LaunchArg, T4: LaunchArg, T5: LaunchArg, T6: LaunchArg, T7: LaunchArg, T8: LaunchArg> LaunchArg for (T0, T1, T2, T3, T4, T5, T6, T7, T8)

Source§

type RuntimeArg<'a, R: Runtime> = (<T0 as LaunchArg>::RuntimeArg<'a, R>, <T1 as LaunchArg>::RuntimeArg<'a, R>, <T2 as LaunchArg>::RuntimeArg<'a, R>, <T3 as LaunchArg>::RuntimeArg<'a, R>, <T4 as LaunchArg>::RuntimeArg<'a, R>, <T5 as LaunchArg>::RuntimeArg<'a, R>, <T6 as LaunchArg>::RuntimeArg<'a, R>, <T7 as LaunchArg>::RuntimeArg<'a, R>, <T8 as LaunchArg>::RuntimeArg<'a, R>)

Source§

type CompilationArg = (<T0 as LaunchArg>::CompilationArg, <T1 as LaunchArg>::CompilationArg, <T2 as LaunchArg>::CompilationArg, <T3 as LaunchArg>::CompilationArg, <T4 as LaunchArg>::CompilationArg, <T5 as LaunchArg>::CompilationArg, <T6 as LaunchArg>::CompilationArg, <T7 as LaunchArg>::CompilationArg, <T8 as LaunchArg>::CompilationArg)

Source§

fn compilation_arg<R: Runtime>( runtime_arg: &Self::RuntimeArg<'_, R>, ) -> Self::CompilationArg

Source§

fn expand( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType, <T5 as CubeType>::ExpandType, <T6 as CubeType>::ExpandType, <T7 as CubeType>::ExpandType, <T8 as CubeType>::ExpandType)

Source§

fn expand_output( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType, <T5 as CubeType>::ExpandType, <T6 as CubeType>::ExpandType, <T7 as CubeType>::ExpandType, <T8 as CubeType>::ExpandType)

Source§

impl<T0: LaunchArg, T1: LaunchArg, T2: LaunchArg, T3: LaunchArg, T4: LaunchArg, T5: LaunchArg, T6: LaunchArg, T7: LaunchArg, T8: LaunchArg, T9: LaunchArg> LaunchArg for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)

Source§

type RuntimeArg<'a, R: Runtime> = (<T0 as LaunchArg>::RuntimeArg<'a, R>, <T1 as LaunchArg>::RuntimeArg<'a, R>, <T2 as LaunchArg>::RuntimeArg<'a, R>, <T3 as LaunchArg>::RuntimeArg<'a, R>, <T4 as LaunchArg>::RuntimeArg<'a, R>, <T5 as LaunchArg>::RuntimeArg<'a, R>, <T6 as LaunchArg>::RuntimeArg<'a, R>, <T7 as LaunchArg>::RuntimeArg<'a, R>, <T8 as LaunchArg>::RuntimeArg<'a, R>, <T9 as LaunchArg>::RuntimeArg<'a, R>)

Source§

type CompilationArg = (<T0 as LaunchArg>::CompilationArg, <T1 as LaunchArg>::CompilationArg, <T2 as LaunchArg>::CompilationArg, <T3 as LaunchArg>::CompilationArg, <T4 as LaunchArg>::CompilationArg, <T5 as LaunchArg>::CompilationArg, <T6 as LaunchArg>::CompilationArg, <T7 as LaunchArg>::CompilationArg, <T8 as LaunchArg>::CompilationArg, <T9 as LaunchArg>::CompilationArg)

Source§

fn compilation_arg<R: Runtime>( runtime_arg: &Self::RuntimeArg<'_, R>, ) -> Self::CompilationArg

Source§

fn expand( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType, <T5 as CubeType>::ExpandType, <T6 as CubeType>::ExpandType, <T7 as CubeType>::ExpandType, <T8 as CubeType>::ExpandType, <T9 as CubeType>::ExpandType)

Source§

fn expand_output( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType, <T5 as CubeType>::ExpandType, <T6 as CubeType>::ExpandType, <T7 as CubeType>::ExpandType, <T8 as CubeType>::ExpandType, <T9 as CubeType>::ExpandType)

Source§

impl<T0: LaunchArg, T1: LaunchArg, T2: LaunchArg, T3: LaunchArg, T4: LaunchArg, T5: LaunchArg, T6: LaunchArg, T7: LaunchArg, T8: LaunchArg, T9: LaunchArg, T10: LaunchArg> LaunchArg for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)

Source§

type RuntimeArg<'a, R: Runtime> = (<T0 as LaunchArg>::RuntimeArg<'a, R>, <T1 as LaunchArg>::RuntimeArg<'a, R>, <T2 as LaunchArg>::RuntimeArg<'a, R>, <T3 as LaunchArg>::RuntimeArg<'a, R>, <T4 as LaunchArg>::RuntimeArg<'a, R>, <T5 as LaunchArg>::RuntimeArg<'a, R>, <T6 as LaunchArg>::RuntimeArg<'a, R>, <T7 as LaunchArg>::RuntimeArg<'a, R>, <T8 as LaunchArg>::RuntimeArg<'a, R>, <T9 as LaunchArg>::RuntimeArg<'a, R>, <T10 as LaunchArg>::RuntimeArg<'a, R>)

Source§

type CompilationArg = (<T0 as LaunchArg>::CompilationArg, <T1 as LaunchArg>::CompilationArg, <T2 as LaunchArg>::CompilationArg, <T3 as LaunchArg>::CompilationArg, <T4 as LaunchArg>::CompilationArg, <T5 as LaunchArg>::CompilationArg, <T6 as LaunchArg>::CompilationArg, <T7 as LaunchArg>::CompilationArg, <T8 as LaunchArg>::CompilationArg, <T9 as LaunchArg>::CompilationArg, <T10 as LaunchArg>::CompilationArg)

Source§

fn compilation_arg<R: Runtime>( runtime_arg: &Self::RuntimeArg<'_, R>, ) -> Self::CompilationArg

Source§

fn expand( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType, <T5 as CubeType>::ExpandType, <T6 as CubeType>::ExpandType, <T7 as CubeType>::ExpandType, <T8 as CubeType>::ExpandType, <T9 as CubeType>::ExpandType, <T10 as CubeType>::ExpandType)

Source§

fn expand_output( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType, <T5 as CubeType>::ExpandType, <T6 as CubeType>::ExpandType, <T7 as CubeType>::ExpandType, <T8 as CubeType>::ExpandType, <T9 as CubeType>::ExpandType, <T10 as CubeType>::ExpandType)

Source§

impl<T0: LaunchArg, T1: LaunchArg, T2: LaunchArg, T3: LaunchArg, T4: LaunchArg, T5: LaunchArg, T6: LaunchArg, T7: LaunchArg, T8: LaunchArg, T9: LaunchArg, T10: LaunchArg, T11: LaunchArg> LaunchArg for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)

Source§

type RuntimeArg<'a, R: Runtime> = (<T0 as LaunchArg>::RuntimeArg<'a, R>, <T1 as LaunchArg>::RuntimeArg<'a, R>, <T2 as LaunchArg>::RuntimeArg<'a, R>, <T3 as LaunchArg>::RuntimeArg<'a, R>, <T4 as LaunchArg>::RuntimeArg<'a, R>, <T5 as LaunchArg>::RuntimeArg<'a, R>, <T6 as LaunchArg>::RuntimeArg<'a, R>, <T7 as LaunchArg>::RuntimeArg<'a, R>, <T8 as LaunchArg>::RuntimeArg<'a, R>, <T9 as LaunchArg>::RuntimeArg<'a, R>, <T10 as LaunchArg>::RuntimeArg<'a, R>, <T11 as LaunchArg>::RuntimeArg<'a, R>)

Source§

type CompilationArg = (<T0 as LaunchArg>::CompilationArg, <T1 as LaunchArg>::CompilationArg, <T2 as LaunchArg>::CompilationArg, <T3 as LaunchArg>::CompilationArg, <T4 as LaunchArg>::CompilationArg, <T5 as LaunchArg>::CompilationArg, <T6 as LaunchArg>::CompilationArg, <T7 as LaunchArg>::CompilationArg, <T8 as LaunchArg>::CompilationArg, <T9 as LaunchArg>::CompilationArg, <T10 as LaunchArg>::CompilationArg, <T11 as LaunchArg>::CompilationArg)

Source§

fn compilation_arg<R: Runtime>( runtime_arg: &Self::RuntimeArg<'_, R>, ) -> Self::CompilationArg

Source§

fn expand( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType, <T5 as CubeType>::ExpandType, <T6 as CubeType>::ExpandType, <T7 as CubeType>::ExpandType, <T8 as CubeType>::ExpandType, <T9 as CubeType>::ExpandType, <T10 as CubeType>::ExpandType, <T11 as CubeType>::ExpandType)

Source§

fn expand_output( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> (<T0 as CubeType>::ExpandType, <T1 as CubeType>::ExpandType, <T2 as CubeType>::ExpandType, <T3 as CubeType>::ExpandType, <T4 as CubeType>::ExpandType, <T5 as CubeType>::ExpandType, <T6 as CubeType>::ExpandType, <T7 as CubeType>::ExpandType, <T8 as CubeType>::ExpandType, <T9 as CubeType>::ExpandType, <T10 as CubeType>::ExpandType, <T11 as CubeType>::ExpandType)

Implementors§