cart-elc

Source code for CART-ELC
git clone git://git.laack.co/cart-elc.git
Log | Files | Refs | README | LICENSE

gemm.cpp (193B)


      1 #include "gemm_common.h"
      2 
      3 EIGEN_DONT_INLINE
      4 void gemm(const Mat &A, const Mat &B, Mat &C)
      5 {
      6   C.noalias() += A * B;
      7 }
      8 
      9 int main(int argc, char **argv)
     10 {
     11   return main_gemm(argc, argv, gemm);
     12 }