Trait gemm_common::cache::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>

Object Safety§

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§