pub struct TensorMapInputsLaunch<'a, Lhs: Numeric, Rhs: Numeric, EO: Numeric, R: Runtime> {
pub lhs: <View<Line<Lhs>, Coords3d> as LaunchArg>::RuntimeArg<'a, R>,
pub rhs: <View<Line<Rhs>, Coords3d> as LaunchArg>::RuntimeArg<'a, R>,
pub acc: <CubeOption<View<Line<EO>, Coords3d>> as LaunchArg>::RuntimeArg<'a, R>,
/* private fields */
}Fields§
§lhs: <View<Line<Lhs>, Coords3d> as LaunchArg>::RuntimeArg<'a, R>§rhs: <View<Line<Rhs>, Coords3d> as LaunchArg>::RuntimeArg<'a, R>§acc: <CubeOption<View<Line<EO>, Coords3d>> as LaunchArg>::RuntimeArg<'a, R>Implementations§
Source§impl<'a, Lhs: Numeric, Rhs: Numeric, EO: Numeric, R: Runtime> TensorMapInputsLaunch<'a, Lhs, Rhs, EO, R>
impl<'a, Lhs: Numeric, Rhs: Numeric, EO: Numeric, R: Runtime> TensorMapInputsLaunch<'a, Lhs, Rhs, EO, R>
Sourcepub fn new(
lhs: <View<Line<Lhs>, Coords3d> as LaunchArg>::RuntimeArg<'a, R>,
rhs: <View<Line<Rhs>, Coords3d> as LaunchArg>::RuntimeArg<'a, R>,
acc: <CubeOption<View<Line<EO>, Coords3d>> as LaunchArg>::RuntimeArg<'a, R>,
) -> Self
pub fn new( lhs: <View<Line<Lhs>, Coords3d> as LaunchArg>::RuntimeArg<'a, R>, rhs: <View<Line<Rhs>, Coords3d> as LaunchArg>::RuntimeArg<'a, R>, acc: <CubeOption<View<Line<EO>, Coords3d>> as LaunchArg>::RuntimeArg<'a, R>, ) -> Self
New kernel
Trait Implementations§
Source§impl<'a, Lhs: Numeric, Rhs: Numeric, EO: Numeric, R: Runtime> ArgSettings<R> for TensorMapInputsLaunch<'a, Lhs, Rhs, EO, R>
impl<'a, Lhs: Numeric, Rhs: Numeric, EO: Numeric, R: Runtime> ArgSettings<R> for TensorMapInputsLaunch<'a, Lhs, Rhs, EO, 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, Lhs, Rhs, EO, R> Freeze for TensorMapInputsLaunch<'a, Lhs, Rhs, EO, R>
impl<'a, Lhs, Rhs, EO, R> !RefUnwindSafe for TensorMapInputsLaunch<'a, Lhs, Rhs, EO, R>
impl<'a, Lhs, Rhs, EO, R> Send for TensorMapInputsLaunch<'a, Lhs, Rhs, EO, R>
impl<'a, Lhs, Rhs, EO, R> Sync for TensorMapInputsLaunch<'a, Lhs, Rhs, EO, R>
impl<'a, Lhs, Rhs, EO, R> Unpin for TensorMapInputsLaunch<'a, Lhs, Rhs, EO, R>where
R: Unpin,
impl<'a, Lhs, Rhs, EO, R> !UnwindSafe for TensorMapInputsLaunch<'a, Lhs, Rhs, EO, R>
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