cart-elc

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

gemvt.cpp (205B)


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