This repository is meant to isolate sgemm from browsermt/marian-dev.
Archival when integration at the target repository is complete.
Objectives:
- Inputs in marian format -
marian::Tensor
. A bare minimum stub is added here. - Relay into sgemm provider implementing BLAS SGEMM API.
- Benchmark different providers on possible hardware.
From LAPACK:
SGEMM performs one of the matrix-matrix operations
C := alpha*op( A )*op( B ) + beta*C,
where op( X ) is one of
op( X ) = X or op( X ) = X**T,