gemm_common::cache

Trait DivCeil

Source
pub trait DivCeil: Sized {
    // Required methods
    fn msrv_div_ceil(self, rhs: Self) -> Self;
    fn msrv_next_multiple_of(self, rhs: Self) -> Self;
    fn msrv_checked_next_multiple_of(self, rhs: Self) -> Option<Self>;
}

Required Methods§

Source

fn msrv_div_ceil(self, rhs: Self) -> Self

Source

fn msrv_next_multiple_of(self, rhs: Self) -> Self

Source

fn msrv_checked_next_multiple_of(self, rhs: Self) -> Option<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl DivCeil for usize

Source§

fn msrv_div_ceil(self, rhs: Self) -> Self

Source§

fn msrv_next_multiple_of(self, rhs: Self) -> Self

Source§

fn msrv_checked_next_multiple_of(self, rhs: Self) -> Option<Self>

Implementors§