BTL: fix warnings and extend to 5k matrices, update GotoBlas to OpenBlas, etc.

This commit is contained in:
Gael Guennebaud
2014-03-31 10:58:30 +02:00
parent 8d0441052e
commit f603823ef3
19 changed files with 104 additions and 136 deletions

View File

@@ -33,7 +33,7 @@ class Action_axpby {
public :
// Ctor
Action_axpby( int size ):_size(size),_alpha(0.5),_beta(0.95)
Action_axpby( int size ):_alpha(0.5),_beta(0.95),_size(size)
{
MESSAGE("Action_axpby Ctor");

View File

@@ -35,7 +35,7 @@ public :
// Ctor
Action_axpy( int size ):_size(size),_coef(1.0)
Action_axpy( int size ):_coef(1.0),_size(size)
{
MESSAGE("Action_axpy Ctor");