Home | History | Annotate | Download | only in data
      1 aat ; "{/*1.5 A x A^T}" ; "matrix size" ; 4:3000
      2 ata ; "{/*1.5 A^T x A}" ; "matrix size" ; 4:3000
      3 atv ; "{/*1.5 matrix^T x vector}" ; "matrix size" ; 4:3000
      4 axpby ; "{/*1.5 Y = alpha X + beta Y}" ; "vector size" ; 5:1000000
      5 axpy ; "{/*1.5 Y += alpha X}" ; "vector size" ; 5:1000000
      6 matrix_matrix ; "{/*1.5 matrix matrix product}" ; "matrix size" ; 4:3000
      7 matrix_vector ; "{/*1.5 matrix vector product}" ; "matrix size" ; 4:3000
      8 trmm ; "{/*1.5 triangular matrix matrix product}" ; "matrix size" ; 4:3000
      9 trisolve_vector ; "{/*1.5 triangular solver - vector (X = inv(L) X)}" ; "size" ; 4:3000
     10 trisolve_matrix ; "{/*1.5 triangular solver - matrix (M = inv(L) M)}" ; "size" ; 4:3000
     11 cholesky ; "{/*1.5 Cholesky decomposition}" ; "matrix size" ; 4:3000
     12 complete_lu_decomp ; "{/*1.5 Complete LU decomposition}" ; "matrix size" ; 4:3000
     13 partial_lu_decomp ; "{/*1.5 Partial LU decomposition}" ; "matrix size" ; 4:3000
     14 tridiagonalization ; "{/*1.5 Tridiagonalization}" ; "matrix size" ; 4:3000
     15 hessenberg ; "{/*1.5 Hessenberg decomposition}" ; "matrix size" ; 4:3000
     16 symv ; "{/*1.5 symmetric matrix vector product}" ; "matrix size" ; 4:3000
     17 syr2 ; "{/*1.5 symmretric rank-2 update (A += u^T v + u v^T)}" ; "matrix size" ; 4:3000
     18 ger ; "{/*1.5 general rank-1 update (A += u v^T)}" ; "matrix size" ; 4:3000
     19 rot ; "{/*1.5 apply rotation in the plane}" ; "vector size" ; 4:1000000