Trait Architecture

Source
pub trait Architecture {
    // Required methods
    fn warp_size(&self) -> u32;
    fn is_wmma_capable(&self) -> bool;
    fn is_mfma_capable(&self) -> bool;

    // Provided method
    fn get_version(&self) -> u32 { ... }
}

Required Methods§

Provided Methods§

Source

fn get_version(&self) -> u32

Implementors§