Trait cubecl_core::frontend::Max

source ·
pub trait Max: CubeType + Sized {
    // Provided methods
    fn max(self, _rhs: Self) -> Self { ... }
    fn __expand_max(
        context: &mut CubeContext,
        lhs: ExpandElementTyped<Self>,
        rhs: ExpandElementTyped<Self>,
    ) -> ExpandElementTyped<Self> { ... }
}

Provided Methods§

source

fn max(self, _rhs: Self) -> Self

source

fn __expand_max( context: &mut CubeContext, lhs: ExpandElementTyped<Self>, rhs: ExpandElementTyped<Self>, ) -> ExpandElementTyped<Self>

Object Safety§

This trait is not object safe.

Implementors§