Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
189 B
C++
Raw Permalink Normal View History

2016-12-05 23:01:52 +01:00
#include "gemm_common.h"
EIGEN_DONT_INLINE void gemm(const Mat &A, const Mat &B, Mat &C) { C.noalias() += A * B; }
2016-12-05 23:01:52 +01:00
int main(int argc, char **argv) { return main_gemm(argc, argv, gemm); }