From eb905500b6c654860aa9f9d9c77c7c2614e0ad10 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 23 Feb 2010 13:06:49 +0100 Subject: significant speedup in the matrix-matrix products --- bench/bench_gemm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bench/bench_gemm.cpp') diff --git a/bench/bench_gemm.cpp b/bench/bench_gemm.cpp index e99fc2970..ccc155dc5 100644 --- a/bench/bench_gemm.cpp +++ b/bench/bench_gemm.cpp @@ -22,8 +22,8 @@ void gemm(const M& a, const M& b, M& c) int main(int argc, char ** argv) { - int rep = 2; - int s = 1024; + int rep = 1; + int s = 2048; int m = s; int n = s; int p = s; -- cgit v1.2.3