Eurobot2012_Primary

Dependencies:   mbed Eurobot_2012_Primary

Committer:
narshu
Date:
Wed Oct 17 22:22:28 2012 +0000
Revision:
25:143b19c1fb05
Commit before publishing;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
narshu 25:143b19c1fb05 1 /*
narshu 25:143b19c1fb05 2 * Tiny Vector Matrix Library
narshu 25:143b19c1fb05 3 * Dense Vector Matrix Libary of Tiny size using Expression Templates
narshu 25:143b19c1fb05 4 *
narshu 25:143b19c1fb05 5 * Copyright (C) 2001 - 2007 Olaf Petzold <opetzold@users.sourceforge.net>
narshu 25:143b19c1fb05 6 *
narshu 25:143b19c1fb05 7 * This library is free software; you can redistribute it and/or
narshu 25:143b19c1fb05 8 * modify it under the terms of the GNU Lesser General Public
narshu 25:143b19c1fb05 9 * License as published by the Free Software Foundation; either
narshu 25:143b19c1fb05 10 * version 2.1 of the License, or (at your option) any later version.
narshu 25:143b19c1fb05 11 *
narshu 25:143b19c1fb05 12 * This library is distributed in the hope that it will be useful,
narshu 25:143b19c1fb05 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
narshu 25:143b19c1fb05 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
narshu 25:143b19c1fb05 15 * Lesser General Public License for more details.
narshu 25:143b19c1fb05 16 *
narshu 25:143b19c1fb05 17 * You should have received a copy of the GNU Lesser General Public
narshu 25:143b19c1fb05 18 * License along with this library; if not, write to the Free Software
narshu 25:143b19c1fb05 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
narshu 25:143b19c1fb05 20 *
narshu 25:143b19c1fb05 21 * $Id: Gemv.h,v 1.7 2007-06-23 15:58:59 opetzold Exp $
narshu 25:143b19c1fb05 22 */
narshu 25:143b19c1fb05 23
narshu 25:143b19c1fb05 24 #ifndef TVMET_LOOP_GEMV_H
narshu 25:143b19c1fb05 25 #define TVMET_LOOP_GEMV_H
narshu 25:143b19c1fb05 26
narshu 25:143b19c1fb05 27 namespace tvmet {
narshu 25:143b19c1fb05 28
narshu 25:143b19c1fb05 29 namespace loop {
narshu 25:143b19c1fb05 30
narshu 25:143b19c1fb05 31
narshu 25:143b19c1fb05 32 /**
narshu 25:143b19c1fb05 33 * \class gemv Gemv.h "tvmet/loop/Gemv.h"
narshu 25:143b19c1fb05 34 * \brief class for matrix-vector product using loop unrolling.
narshu 25:143b19c1fb05 35 * using formula
narshu 25:143b19c1fb05 36 * \f[
narshu 25:143b19c1fb05 37 * M\,v
narshu 25:143b19c1fb05 38 * \f]
narshu 25:143b19c1fb05 39 * \par Example:
narshu 25:143b19c1fb05 40 * \code
narshu 25:143b19c1fb05 41 * template<class T, std::size_t Rows, std::size_t Cols>
narshu 25:143b19c1fb05 42 * inline
narshu 25:143b19c1fb05 43 * void
narshu 25:143b19c1fb05 44 * prod(const Matrix<T, Rows, Cols>& lhs, const Vector<T, Cols>& rhs,
narshu 25:143b19c1fb05 45 * Vector<T, Rows>& dest)
narshu 25:143b19c1fb05 46 * {
narshu 25:143b19c1fb05 47 * for (std::size_t i = 0; i != Rows; ++i) {
narshu 25:143b19c1fb05 48 * dest(i) = tvmet::loop::gemv<Rows, Cols>().prod(lhs, rhs, i);
narshu 25:143b19c1fb05 49 * }
narshu 25:143b19c1fb05 50 * }
narshu 25:143b19c1fb05 51 * \endcode
narshu 25:143b19c1fb05 52 */
narshu 25:143b19c1fb05 53 template<std::size_t Rows, std::size_t Cols>
narshu 25:143b19c1fb05 54 class gemv
narshu 25:143b19c1fb05 55 {
narshu 25:143b19c1fb05 56 gemv(const gemv&);
narshu 25:143b19c1fb05 57 gemv& operator=(const gemv&);
narshu 25:143b19c1fb05 58
narshu 25:143b19c1fb05 59 private:
narshu 25:143b19c1fb05 60 enum {
narshu 25:143b19c1fb05 61 count = Cols,
narshu 25:143b19c1fb05 62 N = (count+7)/8
narshu 25:143b19c1fb05 63 };
narshu 25:143b19c1fb05 64
narshu 25:143b19c1fb05 65 public:
narshu 25:143b19c1fb05 66 gemv() { }
narshu 25:143b19c1fb05 67
narshu 25:143b19c1fb05 68 public:
narshu 25:143b19c1fb05 69 template<class E1, class E2>
narshu 25:143b19c1fb05 70 static inline
narshu 25:143b19c1fb05 71 typename PromoteTraits<
narshu 25:143b19c1fb05 72 typename E1::value_type,
narshu 25:143b19c1fb05 73 typename E2::value_type
narshu 25:143b19c1fb05 74 >::value_type
narshu 25:143b19c1fb05 75 prod(const E1& lhs, const E2& rhs, std::size_t i) {
narshu 25:143b19c1fb05 76 typename PromoteTraits<
narshu 25:143b19c1fb05 77 typename E1::value_type,
narshu 25:143b19c1fb05 78 typename E2::value_type
narshu 25:143b19c1fb05 79 >::value_type sum(0);
narshu 25:143b19c1fb05 80 std::size_t j(0);
narshu 25:143b19c1fb05 81 std::size_t n(N);
narshu 25:143b19c1fb05 82
narshu 25:143b19c1fb05 83 // Duff's device
narshu 25:143b19c1fb05 84 switch(count % 8) {
narshu 25:143b19c1fb05 85 case 0: do { sum += lhs(i, j) * rhs(j); ++j;
narshu 25:143b19c1fb05 86 case 7: sum += lhs(i, j) * rhs(j); ++j;
narshu 25:143b19c1fb05 87 case 6: sum += lhs(i, j) * rhs(j); ++j;
narshu 25:143b19c1fb05 88 case 5: sum += lhs(i, j) * rhs(j); ++j;
narshu 25:143b19c1fb05 89 case 4: sum += lhs(i, j) * rhs(j); ++j;
narshu 25:143b19c1fb05 90 case 3: sum += lhs(i, j) * rhs(j); ++j;
narshu 25:143b19c1fb05 91 case 2: sum += lhs(i, j) * rhs(j); ++j;
narshu 25:143b19c1fb05 92 case 1: sum += lhs(i, j) * rhs(j); ++j;
narshu 25:143b19c1fb05 93 } while(--n != 0);
narshu 25:143b19c1fb05 94 }
narshu 25:143b19c1fb05 95
narshu 25:143b19c1fb05 96 return sum;
narshu 25:143b19c1fb05 97 }
narshu 25:143b19c1fb05 98 };
narshu 25:143b19c1fb05 99
narshu 25:143b19c1fb05 100
narshu 25:143b19c1fb05 101 } // namespace loop
narshu 25:143b19c1fb05 102
narshu 25:143b19c1fb05 103 } // namespace tvmet
narshu 25:143b19c1fb05 104
narshu 25:143b19c1fb05 105 #endif /* TVMET_LOOP_GEMV_H */
narshu 25:143b19c1fb05 106
narshu 25:143b19c1fb05 107 // Local Variables:
narshu 25:143b19c1fb05 108 // mode:C++
narshu 25:143b19c1fb05 109 // tab-width:8
narshu 25:143b19c1fb05 110 // End: