TileKind

Trait TileKind 

Source
pub trait TileKind<IO: SliceVisibility = ReadOnly>:
    CubeType
    + Send
    + Sync
    + 'static {
    type Tile<E: Numeric>: CubeType;
}
Expand description

Kind (family) of the tiles returned by a stage and ingested by a tile matmul reader

Required Associated Types§

Source

type Tile<E: Numeric>: CubeType

Concrete tile instantiated with the element type

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<Inner: TileKind<IO>, IO: SliceVisibility> TileKind<IO> for CubeOption<Inner>

Source§

type Tile<E: Numeric> = CubeOption<<Inner as TileKind<IO>>::Tile<E>>

Implementors§