Benchmark for FLENS

Hardware: Intel(R) Core(TM) i5-3470 CPU @ 3.20GHz

Matrix-Matrix Operations: BLAS Level 3

GEMM

General Matrix-Matrix Product: \(C \leftarrow \beta C + \alpha A B\)

TRSM

Triangular Solver for Matrix Equations:

\[B \leftarrow \alpha\,L^{-1} B,\quad B \leftarrow \alpha\,U^{-1} B,\quad B \leftarrow \alpha\,B L^{-1} \quad\text{or}\quad B \leftarrow \alpha\,B U^{-1} \]

for a lower triangular matrix \(L\) and upper triangular matrix \(U\).

Matrix-Vector Operations: BLAS Level 2

GEMV

General Matrix Vector Product: \(y \leftarrow \beta y + \alpha A x\)

GER

General Matrix Rank-1 Update: \(A \leftarrow A + \alpha\,x\,y^T\)

LAPACK

GETRF

LU Factorization with partial Pivoting