wuxing0105's picture
Add files using upload-large-folder tool
5f4cece verified
Raw
History Blame Contribute Delete
193 Bytes
#include "gemv_common.h"
EIGEN_DONT_INLINE
void gemv(const Mat &A, const Vec &B, Vec &C)
{
C.noalias() += A * B;
}
int main(int argc, char **argv)
{
return main_gemv(argc, argv, gemv);
}