Accelerated

Struct Accelerated 

Source
pub struct Accelerated;

Trait Implementations§

Source§

impl MatmulConfigFactory for Accelerated

Source§

type Input = TileMatmulConfigInput

Source§

type Config = Config

Configuration tailored to the matmul implementation
Source§

fn check_config(config: &Self::Config) -> Result<(), InvalidConfigError>

Asserts that the configuration for this matmul will lead to a valid computation
Source§

fn check_availability<R: Runtime, MP: MatmulPrecision>( client: &ComputeClient<R::Server, R::Channel>, config: &Self::Config, ) -> Result<(), MatmulAvailabilityError>

Checks if the client can handle the features used in this computation
Source§

fn make_config( input: Self::Input, problem: &MatmulProblem, cube_dim: &CubeDim, _cube_count: &CubeCount, _quantized: bool, ) -> Self::Config

Create config for this matmul, given launch information
Source§

impl<MP: MatmulPrecision> TileMatmul<MP> for Accelerated

Source§

type Config = Config

Source§

type Lhs = Matrix<<MP as MatmulPrecision>::ES>

Contains LHS data that can be split across the units
Source§

type Rhs = Matrix<<MP as MatmulPrecision>::ES>

Contains RHS data that can be split across the units
Source§

type Accumulator = Matrix<<MP as MatmulPrecision>::EA>

Contains output data that can be split across the units
Source§

fn execute( lhs: &Self::Lhs, rhs: &Self::Rhs, out: &mut Self::Accumulator, _config: Config, )

Executes the matrix multiplication of LHS and RHS, adding the result to the output
Source§

fn allocate_lhs(config: Config) -> Self::Lhs

Create the container for LHS data Read more
Source§

fn allocate_rhs(config: Config) -> Self::Rhs

Create the container for RHS data Read more
Source§

fn fill_lhs(tile: &Tile<MP::ES>, lhs: &mut Self::Lhs, config: Config)

Fill the container of LHS with data
Source§

fn fill_rhs(tile: &Tile<MP::ES>, rhs: &mut Self::Rhs, config: Config)

Fill the container of RHS with data
Source§

fn fill_accumulator( tile: &Tile<MP::EA>, acc: &mut Self::Accumulator, config: Config, )

Fill the accumulator with data
Source§

fn read_accumulator<C: Numeric>( out: &Self::Accumulator, slice: &mut SliceMut<Line<C>>, config: Config, )

Write the content of the output container to the given slice
Source§

fn allocate_accumulator(config: Self::Config) -> Self::Accumulator

Allocate the container to receive the execution output. Read more
Source§

fn zero_accumulator(acc: &mut Self::Accumulator, _config: Self::Config)

Fill the accumulator with zeros.
Source§

fn __expand_execute( context: &mut Scope, lhs: <Self::Lhs as CubeType>::ExpandType, rhs: <Self::Rhs as CubeType>::ExpandType, out: <Self::Accumulator as CubeType>::ExpandType, _config: Config, ) -> <() as CubeType>::ExpandType

Source§

fn __expand_allocate_lhs( context: &mut Scope, config: Config, ) -> <Self::Lhs as CubeType>::ExpandType

Source§

fn __expand_allocate_rhs( context: &mut Scope, config: Config, ) -> <Self::Rhs as CubeType>::ExpandType

Source§

fn __expand_fill_lhs( context: &mut Scope, tile: <Tile<MP::ES> as CubeType>::ExpandType, lhs: <Self::Lhs as CubeType>::ExpandType, config: Config, ) -> <() as CubeType>::ExpandType

Source§

fn __expand_fill_rhs( context: &mut Scope, tile: <Tile<MP::ES> as CubeType>::ExpandType, rhs: <Self::Rhs as CubeType>::ExpandType, config: Config, ) -> <() as CubeType>::ExpandType

Source§

fn __expand_fill_accumulator( context: &mut Scope, tile: <Tile<MP::EA> as CubeType>::ExpandType, acc: <Self::Accumulator as CubeType>::ExpandType, config: Config, ) -> <() as CubeType>::ExpandType

Source§

fn __expand_read_accumulator<C: Numeric>( context: &mut Scope, out: <Self::Accumulator as CubeType>::ExpandType, slice: <SliceMut<Line<C>> as CubeType>::ExpandType, config: Config, ) -> <() as CubeType>::ExpandType

Source§

fn __expand_allocate_accumulator( context: &mut Scope, config: Self::Config, ) -> <Self::Accumulator as CubeType>::ExpandType

Source§

fn __expand_zero_accumulator( context: &mut Scope, acc: <Self::Accumulator as CubeType>::ExpandType, _config: Self::Config, ) -> <() as CubeType>::ExpandType

Source§

impl TileMatmulFamily for Accelerated

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V