BLIS (software)


In scientific computing, the BLIS
is an open-source framework for implementing a superset of BLAS functionality for specific processor types. It exposes that functionality through two traditional Application Programming Interfaces : the BLAS interface and the CBLAS interface. BLIS also includes two APIs native to the framework: a typed API and an object API. These native interfaces provide access to BLAS-like functionality that is not supported by, but closely related to, operations found in the BLAS.
The framework is developed and supported by the Science of High-Performance Computing group of the Oden Institute for Computational Engineering and Sciences at The University of Texas at Austin.
BLIS yields high performance on many current CPU microarchitectures in both single-threaded and multithreaded modes of execution. BLIS also offers competitive performance for some cases of matrix multiplication in which one or more matrix operands are unusually skinny and/or small.
The framework achieves high performance by employing specialized kernels along with cache and register blocking through matrix operands. BLIS also works on processors for which custom kernels have not yet been written; in those cases, the framework relies upon portable kernel implementations that perform at a lower rate of computation.
BLIS is sometimes described as a refactoring of GotoBLAS2, which was created by Kazushige Goto at the Texas Advanced Computing Center.