aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/benchBlasGemm.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-07-12 22:59:34 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-07-12 22:59:34 +0000
commit861d18d5532546ddb0cd2bff8795eda080ce0c85 (patch)
treea5f874ce1846c3c36a067cb88fe0ae3775adc56b /bench/benchBlasGemm.cpp
parent1bbaea988501ac4c151485bbbe1a170e594ce90b (diff)
* Optimization: added a specialization of Block for xpr with DirectAccessBit
* some simplifications and fixes in cache friendly products
Diffstat (limited to 'bench/benchBlasGemm.cpp')
-rw-r--r--bench/benchBlasGemm.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/bench/benchBlasGemm.cpp b/bench/benchBlasGemm.cpp
index 02f067e1a..5455b6ed5 100644
--- a/bench/benchBlasGemm.cpp
+++ b/bench/benchBlasGemm.cpp
@@ -82,12 +82,12 @@ int main(int argc, char *argv[])
std::cout << "Usage: " << argv[0] << " size nbloops nbtries\n";
std::cout << "Usage: " << argv[0] << " M N K nbloops nbtries\n";
std::cout << "Usage: " << argv[0] << " check\n";
- std::cout << "Options:\n"
+ std::cout << "Options:\n";
std::cout << " size unique size of the 2 matrices (integer)\n";
std::cout << " auto automatically set the number of repetitions and tries\n";
- std::cout << " nbloops number of times the GEMM routines is executed\n"
- std::cout << " nbtries number of times the loop is benched (return the best try)\n"
- std::cout << " M N K sizes of the matrices: MxN = MxK * KxN (integers)\n"
+ std::cout << " nbloops number of times the GEMM routines is executed\n";
+ std::cout << " nbtries number of times the loop is benched (return the best try)\n";
+ std::cout << " M N K sizes of the matrices: MxN = MxK * KxN (integers)\n";
std::cout << " check check eigen product using cblas as a reference\n";
exit(1);
}