aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/btl/data
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-06-04 18:16:54 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-06-04 18:16:54 +0200
commitc49d1fd2b5d3ef6a71c385a84755df94434eb4b3 (patch)
tree65726702657bc67caff17ecc814cb805b0f25bc9 /bench/btl/data
parentf26c691678a7c6dd02789af3563a042e82677849 (diff)
add a partial LU bench in BTL
Diffstat (limited to 'bench/btl/data')
-rw-r--r--bench/btl/data/action_settings.txt3
-rwxr-xr-xbench/btl/data/go_mean3
2 files changed, 4 insertions, 2 deletions
diff --git a/bench/btl/data/action_settings.txt b/bench/btl/data/action_settings.txt
index ac27a482c..ab1880e84 100644
--- a/bench/btl/data/action_settings.txt
+++ b/bench/btl/data/action_settings.txt
@@ -8,7 +8,8 @@ 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 LU 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
diff --git a/bench/btl/data/go_mean b/bench/btl/data/go_mean
index 5e0529b8a..38c50d226 100755
--- a/bench/btl/data/go_mean
+++ b/bench/btl/data/go_mean
@@ -1,4 +1,4 @@
-#! /bin/bash
+#!/bin/bash
if [ $# < 1 ]; then
echo "Usage: $0 working_directory [tiny|large [prefix]]"
@@ -42,6 +42,7 @@ source mk_mean_script.sh trisolve $1 11 100 300 1000 $mode $prefix
source mk_mean_script.sh matrix_trisolve $1 11 100 300 1000 $mode $prefix
source mk_mean_script.sh cholesky $1 11 100 300 1000 $mode $prefix
source mk_mean_script.sh lu_decomp $1 11 100 300 1000 $mode $prefix
+source mk_mean_script.sh partial_lu_decomp $1 11 100 300 1000 $mode $prefix
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