aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/BenchSparseUtil.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-01-05 16:03:35 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-01-05 16:03:35 +0100
commitc3823dce729eec038f13495d5740d7fae6269715 (patch)
treeac47ec4779f0b82bf355c47525e3be9da795112c /bench/BenchSparseUtil.h
parentd8534be728461a65cc3a2358908067f1ccc7d2ea (diff)
extend benchmark for sparse products
Diffstat (limited to 'bench/BenchSparseUtil.h')
-rw-r--r--bench/BenchSparseUtil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/BenchSparseUtil.h b/bench/BenchSparseUtil.h
index f8dc8bdf4..39db69345 100644
--- a/bench/BenchSparseUtil.h
+++ b/bench/BenchSparseUtil.h
@@ -42,7 +42,7 @@ void fillMatrix(float density, int rows, int cols, EigenSparseMatrix& dst)
void fillMatrix2(int nnzPerCol, int rows, int cols, EigenSparseMatrix& dst)
{
- std::cout << "alloc " << nnzPerCol*cols << "\n";
+// std::cout << "alloc " << nnzPerCol*cols << "\n";
dst.reserve(nnzPerCol*cols);
for(int j = 0; j < cols; j++)
{