mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-06 09:07:10 +08:00
9 lines
215 B
C++
9 lines
215 B
C++
#include "gemv_common.h"
|
|
|
|
EIGEN_DONT_INLINE
|
|
void trmv(const Mat &A, const Vec &B, Vec &C) {
|
|
C.noalias() += A.triangularView<Upper>() * B;
|
|
}
|
|
|
|
int main(int argc, char **argv) { return main_gemv(argc, argv, trmv); }
|