Trait TensorAsinhAPI

Source
pub trait TensorAsinhAPI {
    type Output;

    // Required method
    fn asinh_f(self) -> Result<Self::Output>;

    // Provided method
    fn asinh(self) -> Self::Output
       where Self: Sized { ... }
}

Required Associated Types§

Required Methods§

Source

fn asinh_f(self) -> Result<Self::Output>

Provided Methods§

Source

fn asinh(self) -> Self::Output
where Self: Sized,

Implementors§

Source§

impl<R, T, B, D> TensorAsinhAPI for &TensorAny<R, T, B, D>
where D: DimAPI, R: DataAPI<Data = <B as DeviceRawAPI<T>>::Raw>, B: DeviceAPI<T> + DeviceAsinhAPI<T, D> + DeviceCreationAnyAPI<B::TOut>,

Source§

type Output = TensorBase<Storage<DataOwned<<B as DeviceRawAPI<<B as DeviceAsinhAPI<T, D>>::TOut>>::Raw>, <B as DeviceAsinhAPI<T, D>>::TOut, B>, D>

Source§

impl<T, B, D> TensorAsinhAPI for Tensor<T, B, D>
where D: DimAPI, B: DeviceAPI<T> + DeviceAsinhAPI<T, D, TOut = T> + DeviceCreationAnyAPI<T>,

Source§

impl<T, B, D> TensorAsinhAPI for TensorView<'_, T, B, D>

Source§

type Output = TensorBase<Storage<DataOwned<<B as DeviceRawAPI<<B as DeviceAsinhAPI<T, D>>::TOut>>::Raw>, <B as DeviceAsinhAPI<T, D>>::TOut, B>, D>