pub struct OutLayoutLaunch<R: Runtime> {
pub shape_out: <Sequence<FastDivmod<u32>> as LaunchArg>::RuntimeArg<R>,
pub rows: <u32 as LaunchArg>::RuntimeArg<R>,
pub cols: <u32 as LaunchArg>::RuntimeArg<R>,
pub config: GlobalLayoutConfig,
/* private fields */
}Fields§
§shape_out: <Sequence<FastDivmod<u32>> as LaunchArg>::RuntimeArg<R>§rows: <u32 as LaunchArg>::RuntimeArg<R>§cols: <u32 as LaunchArg>::RuntimeArg<R>§config: GlobalLayoutConfigImplementations§
Source§impl<R: Runtime> OutLayoutLaunch<R>
impl<R: Runtime> OutLayoutLaunch<R>
Sourcepub fn new(
shape_out: <Sequence<FastDivmod<u32>> as LaunchArg>::RuntimeArg<R>,
rows: <u32 as LaunchArg>::RuntimeArg<R>,
cols: <u32 as LaunchArg>::RuntimeArg<R>,
config: GlobalLayoutConfig,
) -> Self
pub fn new( shape_out: <Sequence<FastDivmod<u32>> as LaunchArg>::RuntimeArg<R>, rows: <u32 as LaunchArg>::RuntimeArg<R>, cols: <u32 as LaunchArg>::RuntimeArg<R>, config: GlobalLayoutConfig, ) -> Self
New kernel
Source§impl<R: Runtime> OutLayoutLaunch<R>
impl<R: Runtime> OutLayoutLaunch<R>
pub fn from_args( problem: &ConvolutionProblem, config: GlobalLayoutConfig, ) -> Self
Auto Trait Implementations§
impl<R> Freeze for OutLayoutLaunch<R>
impl<R> RefUnwindSafe for OutLayoutLaunch<R>where
R: RefUnwindSafe,
impl<R> Send for OutLayoutLaunch<R>
impl<R> Sync for OutLayoutLaunch<R>
impl<R> Unpin for OutLayoutLaunch<R>where
R: Unpin,
impl<R> UnsafeUnpin for OutLayoutLaunch<R>
impl<R> UnwindSafe for OutLayoutLaunch<R>where
R: UnwindSafe,
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