pub struct ConcatArgs<'a, T: Element, const N: usize> {
pub a: TensorRef<'a, T, N>,
pub b: TensorRef<'a, T, N>,
pub y: TensorMut<'a, T, N>,
}Expand description
Args bundle for a Concat launch.
Fields§
§a: TensorRef<'a, T, N>First input. a.shape must equal desc.a_shape.
b: TensorRef<'a, T, N>Second input. b.shape must equal desc.b_shape.
y: TensorMut<'a, T, N>Output — shape matches desc.output_shape().
Auto Trait Implementations§
impl<'a, T, const N: usize> !UnwindSafe for ConcatArgs<'a, T, N>
impl<'a, T, const N: usize> Freeze for ConcatArgs<'a, T, N>
impl<'a, T, const N: usize> RefUnwindSafe for ConcatArgs<'a, T, N>where
T: RefUnwindSafe,
impl<'a, T, const N: usize> Send for ConcatArgs<'a, T, N>
impl<'a, T, const N: usize> Sync for ConcatArgs<'a, T, N>where
T: Sync,
impl<'a, T, const N: usize> Unpin for ConcatArgs<'a, T, N>
impl<'a, T, const N: usize> UnsafeUnpin for ConcatArgs<'a, T, N>
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