| 20 | |
| 21 | template<typename MatrixType> void initMatrix_random(MatrixType& mat) __attribute__((noinline)); |
| 22 | template<typename MatrixType> void initMatrix_random(MatrixType& mat) |
| 23 | { |
| 24 | mat.setRandom();// = MatrixType::random(mat.rows(), mat.cols()); |
| 25 | } |
| 26 | |
| 27 | template<typename MatrixType> void initMatrix_identity(MatrixType& mat) __attribute__((noinline)); |
| 28 | template<typename MatrixType> void initMatrix_identity(MatrixType& mat) |