pub struct TensorMapInputsCompilationArg<Lhs: Numeric, Rhs: Numeric, EO: Numeric> {
pub lhs: <View<Line<Lhs>, Coords3d> as LaunchArg>::CompilationArg,
pub rhs: <View<Line<Rhs>, Coords3d> as LaunchArg>::CompilationArg,
pub acc: <CubeOption<View<Line<EO>, Coords3d>> as LaunchArg>::CompilationArg,
}Fields§
§lhs: <View<Line<Lhs>, Coords3d> as LaunchArg>::CompilationArg§rhs: <View<Line<Rhs>, Coords3d> as LaunchArg>::CompilationArg§acc: <CubeOption<View<Line<EO>, Coords3d>> as LaunchArg>::CompilationArgTrait Implementations§
Source§impl<Lhs: Numeric, Rhs: Numeric, EO: Numeric> Clone for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
impl<Lhs: Numeric, Rhs: Numeric, EO: Numeric> Clone for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
Source§impl<Lhs: Numeric, Rhs: Numeric, EO: Numeric> CompilationArg for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
impl<Lhs: Numeric, Rhs: Numeric, EO: Numeric> CompilationArg for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
Source§fn dynamic_cast<Arg>(&self) -> Argwhere
Arg: CompilationArg,
fn dynamic_cast<Arg>(&self) -> Argwhere
Arg: CompilationArg,
Compilation args should be the same even with different element types. However, it isn’t
possible to enforce it with the type system. So, we make the compilation args serializable
and dynamically cast them. Read more
Source§impl<Lhs: Numeric, Rhs: Numeric, EO: Numeric> Debug for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
impl<Lhs: Numeric, Rhs: Numeric, EO: Numeric> Debug for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
Source§impl<Lhs: Numeric, Rhs: Numeric, EO: Numeric> Hash for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
impl<Lhs: Numeric, Rhs: Numeric, EO: Numeric> Hash for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
Source§impl<Lhs: Numeric, Rhs: Numeric, EO: Numeric> PartialEq for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
impl<Lhs: Numeric, Rhs: Numeric, EO: Numeric> PartialEq for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
impl<Lhs: Numeric, Rhs: Numeric, EO: Numeric> Eq for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
Auto Trait Implementations§
impl<Lhs, Rhs, EO> Freeze for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
impl<Lhs, Rhs, EO> !RefUnwindSafe for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
impl<Lhs, Rhs, EO> Send for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
impl<Lhs, Rhs, EO> Sync for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
impl<Lhs, Rhs, EO> Unpin for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
impl<Lhs, Rhs, EO> !UnwindSafe for TensorMapInputsCompilationArg<Lhs, Rhs, EO>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.