update gemm changeset list

This commit is contained in:
Gael Guennebaud
2015-03-06 15:08:20 +01:00
parent cd3bbffa73
commit 4c8eeeaed6
2 changed files with 2 additions and 1 deletions

View File

@@ -199,7 +199,7 @@ void benchmark_t::run()
double starttime = timer.getCpuTime();
for (int i = 0; i < iters_at_a_time; i++) {
dst[matrix_index] = lhs[matrix_index] * rhs[matrix_index];
dst[matrix_index].noalias() = lhs[matrix_index] * rhs[matrix_index];
matrix_index++;
if (matrix_index == matrix_pool_size) {
matrix_index = 0;