pub struct NhwcCoordsLaunch<'a, R: Runtime> {
pub batch: <u32 as LaunchArg>::RuntimeArg<'a, R>,
pub spatial: <Sequence<i32> as LaunchArg>::RuntimeArg<'a, R>,
pub channel: <u32 as LaunchArg>::RuntimeArg<'a, R>,
/* private fields */
}Fields§
§batch: <u32 as LaunchArg>::RuntimeArg<'a, R>§spatial: <Sequence<i32> as LaunchArg>::RuntimeArg<'a, R>§channel: <u32 as LaunchArg>::RuntimeArg<'a, R>Implementations§
Source§impl<'a, R: Runtime> NhwcCoordsLaunch<'a, R>
impl<'a, R: Runtime> NhwcCoordsLaunch<'a, R>
Sourcepub fn new(
batch: <u32 as LaunchArg>::RuntimeArg<'a, R>,
spatial: <Sequence<i32> as LaunchArg>::RuntimeArg<'a, R>,
channel: <u32 as LaunchArg>::RuntimeArg<'a, R>,
) -> Self
pub fn new( batch: <u32 as LaunchArg>::RuntimeArg<'a, R>, spatial: <Sequence<i32> as LaunchArg>::RuntimeArg<'a, R>, channel: <u32 as LaunchArg>::RuntimeArg<'a, R>, ) -> Self
New kernel
Trait Implementations§
Source§impl<'a, R: Runtime> ArgSettings<R> for NhwcCoordsLaunch<'a, R>
impl<'a, R: Runtime> ArgSettings<R> for NhwcCoordsLaunch<'a, R>
Source§fn register(&self, launcher: &mut KernelLauncher<R>)
fn register(&self, launcher: &mut KernelLauncher<R>)
Register the information of an argument to the KernelLauncher.
Auto Trait Implementations§
impl<'a, R> Freeze for NhwcCoordsLaunch<'a, R>
impl<'a, R> RefUnwindSafe for NhwcCoordsLaunch<'a, R>where
R: RefUnwindSafe,
impl<'a, R> Send for NhwcCoordsLaunch<'a, R>
impl<'a, R> Sync for NhwcCoordsLaunch<'a, R>
impl<'a, R> Unpin for NhwcCoordsLaunch<'a, R>where
R: Unpin,
impl<'a, R> UnwindSafe for NhwcCoordsLaunch<'a, 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