cart-elc

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

trmv_up.cpp (217B)


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