diff options
Diffstat (limited to 'bench/btl/data')
-rw-r--r-- | bench/btl/data/action_settings.txt | 29 | ||||
-rwxr-xr-x | bench/btl/data/go_mean | 1 |
2 files changed, 16 insertions, 14 deletions
diff --git a/bench/btl/data/action_settings.txt b/bench/btl/data/action_settings.txt index ab1880e84..e2d931ddc 100644 --- a/bench/btl/data/action_settings.txt +++ b/bench/btl/data/action_settings.txt @@ -1,16 +1,17 @@ -aat ; "{/*1.5 A x A^T}" ; "matrix size" ; 4:2048 -ata ; "{/*1.5 A^T x A}" ; "matrix size" ; 4:2048 -atv ; "{/*1.5 matrix^T x vector}" ; "matrix size" ; 4:2048 +aat ; "{/*1.5 A x A^T}" ; "matrix size" ; 4:3000 +ata ; "{/*1.5 A^T x A}" ; "matrix size" ; 4:3000 +atv ; "{/*1.5 matrix^T x vector}" ; "matrix size" ; 4:3000 axpby ; "{/*1.5 Y = alpha X + beta Y}" ; "vector size" ; 5:1000000 axpy ; "{/*1.5 Y += alpha X}" ; "vector size" ; 5:1000000 -matrix_matrix ; "{/*1.5 matrix matrix product}" ; "matrix size" ; 4:2048 -matrix_vector ; "{/*1.5 matrix vector product}" ; "matrix size" ; 4:2048 -trisolve ; "{/*1.5 triangular solver (X = inv(L) X)}" ; "size" ; 4:2048 -matrix_trisolve ; "{/*1.5 matrix triangular solver (M = inv(L) M)}" ; "size" ; 4:2048 -cholesky ; "{/*1.5 Cholesky decomposition}" ; "matrix size" ; 4:2048 -lu_decomp ; "{/*1.5 Complete LU decomposition}" ; "matrix size" ; 4:2048 -partial_lu_decomp ; "{/*1.5 Partial LU decomposition}" ; "matrix size" ; 4:2048 -tridiagonalization ; "{/*1.5 Tridiagonalization}" ; "matrix size" ; 4:2048 -hessenberg ; "{/*1.5 Hessenberg decomposition}" ; "matrix size" ; 4:2048 -symv ; "{/*1.5 symmetric matrix vector product}" ; "matrix size" ; 4:2048 -syr2 ; "{/*1.5 symmetric rank-2 update (A += u^T v + u v^T)}" ; "matrix size" ; 4:2048
\ No newline at end of file +matrix_matrix ; "{/*1.5 matrix matrix product}" ; "matrix size" ; 4:3000 +matrix_vector ; "{/*1.5 matrix vector product}" ; "matrix size" ; 4:3000 +trisolve ; "{/*1.5 triangular solver (X = inv(L) X)}" ; "size" ; 4:3000 +matrix_trisolve ; "{/*1.5 matrix triangular solver (M = inv(L) M)}" ; "size" ; 4:3000 +cholesky ; "{/*1.5 Cholesky decomposition}" ; "matrix size" ; 4:3000 +lu_decomp ; "{/*1.5 Complete LU decomposition}" ; "matrix size" ; 4:3000 +partial_lu_decomp ; "{/*1.5 Partial LU decomposition}" ; "matrix size" ; 4:3000 +tridiagonalization ; "{/*1.5 Tridiagonalization}" ; "matrix size" ; 4:3000 +hessenberg ; "{/*1.5 Hessenberg decomposition}" ; "matrix size" ; 4:3000 +symv ; "{/*1.5 symmetric matrix vector product}" ; "matrix size" ; 4:3000 +syr2 ; "{/*1.5 symmretric rank-2 update (A += u^T v + u v^T)}" ; "matrix size" ; 4:3000 +ger ; "{/*1.5 general rank-1 update (A += u v^T)}" ; "matrix size" ; 4:3000
\ No newline at end of file diff --git a/bench/btl/data/go_mean b/bench/btl/data/go_mean index 38c50d226..5ff3a3b98 100755 --- a/bench/btl/data/go_mean +++ b/bench/btl/data/go_mean @@ -47,6 +47,7 @@ source mk_mean_script.sh tridiagonalization $1 11 100 300 1000 $mode $prefix source mk_mean_script.sh hessenberg $1 11 100 300 1000 $mode $prefix source mk_mean_script.sh symv $1 11 50 300 1000 $mode $prefix source mk_mean_script.sh syr2 $1 11 50 300 1000 $mode $prefix +source mk_mean_script.sh ger $1 11 50 300 1000 $mode $prefix fi |