From c49d1fd2b5d3ef6a71c385a84755df94434eb4b3 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 4 Jun 2009 18:16:54 +0200 Subject: add a partial LU bench in BTL --- bench/btl/data/action_settings.txt | 3 ++- bench/btl/data/go_mean | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'bench/btl/data') 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 -- cgit v1.2.3