fix name collision

This commit is contained in:
Gael Guennebaud 2011-01-31 10:54:21 +01:00
parent 9a73bfeb85
commit 476cb4c65c
4 changed files with 6 additions and 5 deletions

View File

@ -87,7 +87,7 @@ public :
static inline std::string name( void )
{
return "trisolve_"+Interface::name();
return "trisolve_vector_"+Interface::name();
}
double nb_op_base( void ){

View File

@ -101,7 +101,7 @@ public :
static inline std::string name( void )
{
return "matrix_trisolve_"+Interface::name();
return "trisolve_matrix_"+Interface::name();
}
double nb_op_base( void ){

View File

@ -5,8 +5,8 @@ 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: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
trisolve_vector ; "{/*1.5 triangular solver - vector (X = inv(L) X)}" ; "size" ; 4:3000
trisolve_matrix ; "{/*1.5 triangular solver - matrix (M = inv(L) M)}" ; "size" ; 4:3000
cholesky ; "{/*1.5 Cholesky decomposition}" ; "matrix size" ; 4:3000
complete_lu_decomp ; "{/*1.5 Complete LU decomposition}" ; "matrix size" ; 4:3000
partial_lu_decomp ; "{/*1.5 Partial LU decomposition}" ; "matrix size" ; 4:3000

View File

@ -8,6 +8,7 @@ ublas ; with lines lw 3 lt 1 lc rgbcolor "#ff0000"
mtl4 ; with lines lw 3 lt 1 lc rgbcolor "#d18847"
blitz ; with lines lw 3 lt 1 lc rgbcolor "#ff00ff"
F77 ; with lines lw 3 lt 3 lc rgbcolor "#e6e64c"
GOTO ; with lines lw 3 lt 3 lc rgbcolor "#e6bd96"
GOTO ; with lines lw 3 lt 3 lc rgbcolor "#C05600"
GOTO2 ; with lines lw 3 lt 1 lc rgbcolor "#C05600"
C ; with lines lw 3 lt 3 lc rgbcolor "#e6bd96"
ACML ; with lines lw 2 lt 3 lc rgbcolor "#e6e64c"