Add performance monitoring for LLT

This commit is contained in:
Gael Guennebaud
2016-12-05 23:01:52 +01:00
parent 18de92329e
commit 1ff1d4a124
9 changed files with 113 additions and 66 deletions

View File

@@ -1,7 +1,7 @@
#include "gemv_common.h"
EIGEN_DONT_INLINE
void gemv(const Mat &A, Vec &B, const Vec &C)
void trmv(const Mat &A, Vec &B, const Vec &C)
{
B.noalias() += A.transpose().triangularView<Lower>() * C;
}