tblis icon indicating copy to clipboard operation
tblis copied to clipboard

Is the matrix operation of this library as fast as MKL

Open matrix97317 opened this issue 3 years ago • 1 comments

matrix97317 avatar Mar 07 '21 16:03 matrix97317

The matrix multiplication primitives are essentially the same as in BLIS; you can find lots of performance graphs for BLIS here. It is typically as fast or faster than OpenBLAS and about 10% slower than MKL. Of course, TBLIS's forte is tensor operations, which are not natively available in MKL and are much slower than TBLIS when implemented using tensor transpose+matrix multiplication (see here).

devinamatthews avatar Mar 07 '21 17:03 devinamatthews