aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/bench_gemm.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-02-23 13:06:49 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-02-23 13:06:49 +0100
commiteb905500b6c654860aa9f9d9c77c7c2614e0ad10 (patch)
tree73d13d1389ffb7594777e26a52823f6c45a48eec /bench/bench_gemm.cpp
parentd579d4cc37693823d03fbfedd2e48c40dcaf8938 (diff)
significant speedup in the matrix-matrix products
Diffstat (limited to 'bench/bench_gemm.cpp')
-rw-r--r--bench/bench_gemm.cpp4
1 files changed, 2 insertions, 2 deletions
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;