mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-23 10:09:36 +08:00
6 lines
201 B
C++
6 lines
201 B
C++
#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); }
|