pub struct RepeatArgs<'a, T: Element, const N: usize> {
pub x: TensorRef<'a, T, N>,
pub y: TensorMut<'a, T, N>,
}Expand description
Args bundle for a Repeat launch.
Fields§
§x: TensorRef<'a, T, N>Input.
y: TensorMut<'a, T, N>Output — shape matches desc.output_shape().
Auto Trait Implementations§
impl<'a, T, const N: usize> !UnwindSafe for RepeatArgs<'a, T, N>
impl<'a, T, const N: usize> Freeze for RepeatArgs<'a, T, N>
impl<'a, T, const N: usize> RefUnwindSafe for RepeatArgs<'a, T, N>where
T: RefUnwindSafe,
impl<'a, T, const N: usize> Send for RepeatArgs<'a, T, N>
impl<'a, T, const N: usize> Sync for RepeatArgs<'a, T, N>where
T: Sync,
impl<'a, T, const N: usize> Unpin for RepeatArgs<'a, T, N>
impl<'a, T, const N: usize> UnsafeUnpin for RepeatArgs<'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