mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Cleanup file structure
This commit is contained in:
12
bench/perf_monitoring/gemm.cpp
Normal file
12
bench/perf_monitoring/gemm.cpp
Normal file
@@ -0,0 +1,12 @@
|
||||
#include "gemm_common.h"
|
||||
|
||||
EIGEN_DONT_INLINE
|
||||
void gemm(const Mat &A, const Mat &B, Mat &C)
|
||||
{
|
||||
C.noalias() += A * B;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
return main_gemm(argc, argv, gemm);
|
||||
}
|
||||
Reference in New Issue
Block a user