mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Add performance monitoring for LLT
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user