aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-07-11 17:16:50 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-07-11 17:16:50 +0200
commit8a5955a052f64fc32099b052a221e0b5a8e92cbd (patch)
tree67c553ff9b0747c43ab506027aaa6b5b169f70d7 /bench
parentd193cc87f4ff26a3ea3187235015c06f005e3960 (diff)
Optimize the product of a householder-sequence with the identity, and optimize the evaluation of a HouseholderSequence to a dense matrix using faster blocked product.
Diffstat (limited to 'bench')
-rw-r--r--bench/bench_gemm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/bench_gemm.cpp b/bench/bench_gemm.cpp
index 8528c5587..688d99c4a 100644
--- a/bench/bench_gemm.cpp
+++ b/bench/bench_gemm.cpp
@@ -129,7 +129,7 @@ void matlab_cplx_real(const M& ar, const M& ai, const M& b, M& cr, M& ci)
template<typename A, typename B, typename C>
EIGEN_DONT_INLINE void gemm(const A& a, const B& b, C& c)
{
- c.noalias() += a * b;
+ c.noalias() += a * b;
}
int main(int argc, char ** argv)