pub struct TensorInputsLaunch<'a, Lhs: Numeric, Rhs: Numeric, Acc: 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<Acc>, 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<Acc>, Coords3d>> as LaunchArg>::RuntimeArg<'a, R>Implementations§
Source§impl<'a, Lhs: Numeric, Rhs: Numeric, Acc: Numeric, R: Runtime> TensorInputsLaunch<'a, Lhs, Rhs, Acc, R>
impl<'a, Lhs: Numeric, Rhs: Numeric, Acc: Numeric, R: Runtime> TensorInputsLaunch<'a, Lhs, Rhs, Acc, 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<Acc>, 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<Acc>, Coords3d>> as LaunchArg>::RuntimeArg<'a, R>, ) -> Self
New kernel
Trait Implementations§
Source§impl<'a, Lhs: Numeric, Rhs: Numeric, Acc: Numeric, R: Runtime> ArgSettings<R> for TensorInputsLaunch<'a, Lhs, Rhs, Acc, R>
impl<'a, Lhs: Numeric, Rhs: Numeric, Acc: Numeric, R: Runtime> ArgSettings<R> for TensorInputsLaunch<'a, Lhs, Rhs, Acc, 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, Acc, R> Freeze for TensorInputsLaunch<'a, Lhs, Rhs, Acc, R>
impl<'a, Lhs, Rhs, Acc, R> !RefUnwindSafe for TensorInputsLaunch<'a, Lhs, Rhs, Acc, R>
impl<'a, Lhs, Rhs, Acc, R> Send for TensorInputsLaunch<'a, Lhs, Rhs, Acc, R>
impl<'a, Lhs, Rhs, Acc, R> Sync for TensorInputsLaunch<'a, Lhs, Rhs, Acc, R>
impl<'a, Lhs, Rhs, Acc, R> Unpin for TensorInputsLaunch<'a, Lhs, Rhs, Acc, R>where
R: Unpin,
impl<'a, Lhs, Rhs, Acc, R> !UnwindSafe for TensorInputsLaunch<'a, Lhs, Rhs, Acc, 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