* updated benchmark files according to recent renamings

* various improvements in BTL including trisolver and cholesky bench
This commit is contained in:
Gael Guennebaud
2008-07-27 11:39:47 +00:00
parent e9e5261664
commit 93115619c2
48 changed files with 1212 additions and 279 deletions

View File

@@ -19,7 +19,7 @@ USING_PART_OF_NAMESPACE_EIGEN
int main(int argc, char *argv[])
{
VECTYPE I = VECTYPE::ones(VECSIZE);
VECTYPE I = VECTYPE::Ones(VECSIZE);
VECTYPE m(VECSIZE,1);
for(int i = 0; i < VECSIZE; i++)
{
@@ -27,7 +27,7 @@ int main(int argc, char *argv[])
}
for(int a = 0; a < REPEAT; a++)
{
m = VECTYPE::ones(VECSIZE) + 0.00005 * (m.cwise().square() + m/4);
m = VECTYPE::Ones(VECSIZE) + 0.00005 * (m.cwise().square() + m/4);
}
cout << m[0] << endl;
return 0;