Trait concision_core::func::activate::nl::ReLU

source ·
pub trait ReLU {
    type Output;

    // Required method
    fn relu(&self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn relu(&self) -> Self::Output

Implementations on Foreign Types§

source§

impl ReLU for f32

§

type Output = f32

source§

fn relu(&self) -> Self::Output

source§

impl ReLU for f64

§

type Output = f64

source§

fn relu(&self) -> Self::Output

source§

impl ReLU for i8

§

type Output = i8

source§

fn relu(&self) -> Self::Output

source§

impl ReLU for i16

§

type Output = i16

source§

fn relu(&self) -> Self::Output

source§

impl ReLU for i32

§

type Output = i32

source§

fn relu(&self) -> Self::Output

source§

impl ReLU for i64

§

type Output = i64

source§

fn relu(&self) -> Self::Output

source§

impl ReLU for i128

§

type Output = i128

source§

fn relu(&self) -> Self::Output

source§

impl ReLU for isize

§

type Output = isize

source§

fn relu(&self) -> Self::Output

source§

impl ReLU for u8

§

type Output = u8

source§

fn relu(&self) -> Self::Output

source§

impl ReLU for u16

§

type Output = u16

source§

fn relu(&self) -> Self::Output

source§

impl ReLU for u32

§

type Output = u32

source§

fn relu(&self) -> Self::Output

source§

impl ReLU for u64

§

type Output = u64

source§

fn relu(&self) -> Self::Output

source§

impl ReLU for u128

§

type Output = u128

source§

fn relu(&self) -> Self::Output

source§

impl ReLU for usize

§

type Output = usize

source§

fn relu(&self) -> Self::Output

source§

impl<'a> ReLU for &'a f32

§

type Output = f32

source§

fn relu(&self) -> Self::Output

source§

impl<'a> ReLU for &'a f64

§

type Output = f64

source§

fn relu(&self) -> Self::Output

source§

impl<'a> ReLU for &'a i8

§

type Output = i8

source§

fn relu(&self) -> Self::Output

source§

impl<'a> ReLU for &'a i16

§

type Output = i16

source§

fn relu(&self) -> Self::Output

source§

impl<'a> ReLU for &'a i32

§

type Output = i32

source§

fn relu(&self) -> Self::Output

source§

impl<'a> ReLU for &'a i64

§

type Output = i64

source§

fn relu(&self) -> Self::Output

source§

impl<'a> ReLU for &'a i128

§

type Output = i128

source§

fn relu(&self) -> Self::Output

source§

impl<'a> ReLU for &'a isize

§

type Output = isize

source§

fn relu(&self) -> Self::Output

source§

impl<'a> ReLU for &'a u8

§

type Output = u8

source§

fn relu(&self) -> Self::Output

source§

impl<'a> ReLU for &'a u16

§

type Output = u16

source§

fn relu(&self) -> Self::Output

source§

impl<'a> ReLU for &'a u32

§

type Output = u32

source§

fn relu(&self) -> Self::Output

source§

impl<'a> ReLU for &'a u64

§

type Output = u64

source§

fn relu(&self) -> Self::Output

source§

impl<'a> ReLU for &'a u128

§

type Output = u128

source§

fn relu(&self) -> Self::Output

source§

impl<'a> ReLU for &'a usize

§

type Output = usize

source§

fn relu(&self) -> Self::Output

source§

impl<A, S, D> ReLU for ArrayBase<S, D>
where A: Clone + ReLU, D: Dimension, S: Data<Elem = A>,

§

type Output = ArrayBase<OwnedRepr<<A as ReLU>::Output>, D>

source§

fn relu(&self) -> Self::Output

Implementors§