extend monitoring benchmarks with transpose matrix-vector and triangular matrix-vectors.

This commit is contained in:
Gael Guennebaud
2016-12-05 13:36:26 +01:00
parent e3f613cbd4
commit 445c015751
13 changed files with 189 additions and 78 deletions

View File

@@ -0,0 +1,12 @@
#include "gemv_common.h"
EIGEN_DONT_INLINE
void gemv(const Mat &A, Vec &B, const Vec &C)
{
B.noalias() += A.transpose() * C;
}
int main(int argc, char **argv)
{
return main_gemv(argc, argv, gemv);
}