Lines Matching refs:DenseMatrix
12 template<typename SparseMatrixType, typename DenseMatrix, bool IsRowMajor=SparseMatrixType::IsRowMa…
14 template<typename SparseMatrixType, typename DenseMatrix> struct test_outer<SparseMatrixType,DenseM…
15 …static void run(SparseMatrixType& m2, SparseMatrixType& m4, DenseMatrix& refMat2, DenseMatrix& ref… in run()
24 template<typename SparseMatrixType, typename DenseMatrix> struct test_outer<SparseMatrixType,DenseM…
25 …static void run(SparseMatrixType& m2, SparseMatrixType& m4, DenseMatrix& refMat2, DenseMatrix& ref… in run()
49 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; in sparse_product() typedef
60 DenseMatrix refMat2 = DenseMatrix::Zero(rows, depth); in sparse_product()
61 DenseMatrix refMat2t = DenseMatrix::Zero(depth, rows); in sparse_product()
62 DenseMatrix refMat3 = DenseMatrix::Zero(depth, cols); in sparse_product()
63 DenseMatrix refMat3t = DenseMatrix::Zero(cols, depth); in sparse_product()
64 DenseMatrix refMat4 = DenseMatrix::Zero(rows, cols); in sparse_product()
65 DenseMatrix refMat4t = DenseMatrix::Zero(cols, rows); in sparse_product()
66 DenseMatrix refMat5 = DenseMatrix::Random(depth, cols); in sparse_product()
67 DenseMatrix refMat6 = DenseMatrix::Random(rows, rows); in sparse_product()
68 DenseMatrix dm4 = DenseMatrix::Zero(rows, rows); in sparse_product()
122 test_outer<SparseMatrixType,DenseMatrix>::run(m2,m4,refMat2,refMat4); in sparse_product()
144 DenseMatrix refM2 = DenseMatrix::Zero(rows, cols); in sparse_product()
145 DenseMatrix refM3 = DenseMatrix::Zero(rows, cols); in sparse_product()
146 DenseMatrix d3 = DenseMatrix::Zero(rows, cols); in sparse_product()
177 DenseMatrix b = DenseMatrix::Random(rows, rows); in sparse_product()
178 DenseMatrix x = DenseMatrix::Random(rows, rows); in sparse_product()
179 DenseMatrix refX = DenseMatrix::Random(rows, rows); in sparse_product()
180 DenseMatrix refUp = DenseMatrix::Zero(rows, rows); in sparse_product()
181 DenseMatrix refLo = DenseMatrix::Zero(rows, rows); in sparse_product()
182 DenseMatrix refS = DenseMatrix::Zero(rows, rows); in sparse_product()