mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2026-04-28 19:17:29 +08:00
355382ad63
* remove useless statement * Add eigen to third_party dir * remove reducdant lines
9 lines
203 B
C++
9 lines
203 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); }
|