pub struct HistogramddArgs<'a, T: Element> {
pub input: TensorRef<'a, T, 2>,
pub output: TensorMut<'a, i32, 1>,
}Expand description
Args bundle for a histogramdd launch.
Fields§
§input: TensorRef<'a, T, 2>Input [numel, ndim].
output: TensorMut<'a, i32, 1>Output [product(num_bins_per_dim)] (i32).
Auto Trait Implementations§
impl<'a, T> !UnwindSafe for HistogramddArgs<'a, T>
impl<'a, T> Freeze for HistogramddArgs<'a, T>
impl<'a, T> RefUnwindSafe for HistogramddArgs<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for HistogramddArgs<'a, T>where
T: Sync,
impl<'a, T> Sync for HistogramddArgs<'a, T>where
T: Sync,
impl<'a, T> Unpin for HistogramddArgs<'a, T>
impl<'a, T> UnsafeUnpin for HistogramddArgs<'a, T>
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