Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Eurobot_2012_Secondary by
gemm< Rows1, Cols1, Cols2 > Class Template Reference
class for matrix-matrix product using loop unrolling. More...
#include <tvmet/loop/Gemm.h>
Detailed Description
template<std::size_t Rows1, std::size_t Cols1, std::size_t Cols2>
class tvmet::loop::gemm< Rows1, Cols1, Cols2 >
class for matrix-matrix product using loop unrolling.
using formula
- Example:
template<class T, std::size_t Rows1, std::size_t Cols1, std::size_t Cols2> inline void prod(const Matrix<T, Rows1, Cols1>& lhs, const Matrix<T, Cols1, Cols2>& rhs, Matrix<T, Rows1, Cols2>& dest) { for (std::size_t i = 0; i != Rows1; ++i) { for (std::size_t j = 0; j != Cols2; ++j) { dest(i, j) = tvmet::loop::gemm<Rows1, Cols1, Cols2>().prod(lhs, rhs, i, j); } } }
- Note:
- The number of rows of rhs matrix have to be equal to cols of lhs matrix. The result is a (Rows1 x Cols2) matrix.
Definition at line 59 of file loop/Gemm.h.
Generated on Tue Jul 12 2022 21:02:14 by
