bugged gaxpy level 2 algorithm without pivoting + use the template type instead of double for sum
This commit is contained in:
parent
541b8bdc6b
commit
5b9e843dba
2 changed files with 84 additions and 11 deletions
1
test.cpp
1
test.cpp
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue