bugged gaxpy level 2 algorithm without pivoting + use the template type instead of double for sum

This commit is contained in:
nojhan 2011-12-18 23:39:43 +01:00
commit 5b9e843dba
2 changed files with 84 additions and 11 deletions

View file

@ -140,6 +140,7 @@ void test( unsigned int M, unsigned int N, unsigned int F, unsigned int R, unsig
algos["LLTa"] = new cholesky::LLTabs<T>;
algos["LLTz"] = new cholesky::LLTzero<T>;
algos["LDLT"] = new cholesky::LDLT<T>;
algos["Gaxpy"] = new cholesky::Gaxpy<T>;
// init data structures on the same keys than given algorithms
std::map<std::string,unsigned int> fails;