/external/eigen/test/ |
D | sparse_product.cpp | 41 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; in sparse_product() typedef 52 DenseMatrix refMat2 = DenseMatrix::Zero(rows, depth); in sparse_product() 53 DenseMatrix refMat2t = DenseMatrix::Zero(depth, rows); in sparse_product() 54 DenseMatrix refMat3 = DenseMatrix::Zero(depth, cols); in sparse_product() 55 DenseMatrix refMat3t = DenseMatrix::Zero(cols, depth); in sparse_product() 56 DenseMatrix refMat4 = DenseMatrix::Zero(rows, cols); in sparse_product() 57 DenseMatrix refMat4t = DenseMatrix::Zero(cols, rows); in sparse_product() 58 DenseMatrix refMat5 = DenseMatrix::Random(depth, cols); in sparse_product() 59 DenseMatrix refMat6 = DenseMatrix::Random(rows, rows); in sparse_product() 60 DenseMatrix dm4 = DenseMatrix::Zero(rows, rows); in sparse_product() [all …]
|
D | sparse_basic.cpp | 32 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; in sparse_basic() typedef 39 DenseMatrix refMat = DenseMatrix::Zero(rows, cols); in sparse_basic() 69 DenseMatrix m1(rows,cols); in sparse_basic() 103 DenseMatrix m1(rows,cols); in sparse_basic() 127 DenseMatrix m1(rows,cols); in sparse_basic() 148 DenseMatrix refM1 = DenseMatrix::Zero(rows, cols); in sparse_basic() 149 DenseMatrix refM2 = DenseMatrix::Zero(rows, cols); in sparse_basic() 150 DenseMatrix refM3 = DenseMatrix::Zero(rows, cols); in sparse_basic() 151 DenseMatrix refM4 = DenseMatrix::Zero(rows, cols); in sparse_basic() 276 DenseMatrix refMat2 = DenseMatrix::Zero(rows, cols); in sparse_basic() [all …]
|
D | sparse_solver.h | 215 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef 221 DenseMatrix dM(size, size); 276 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef 281 DenseMatrix dA; 290 DenseMatrix dB(size,rhsCols); 358 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; in check_sparse_spd_determinant() typedef 362 DenseMatrix dA; in check_sparse_spd_determinant() 405 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef 411 DenseMatrix dA; 417 DenseMatrix dB(size,rhsCols); [all …]
|
D | sparse_solvers.cpp | 36 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; in sparse_solvers() typedef 49 DenseMatrix refMat2 = DenseMatrix::Zero(rows, cols); in sparse_solvers() 81 DenseMatrix refMatB = DenseMatrix::Zero(rows, rows); in sparse_solvers()
|
D | sparse_block.cpp | 37 typedef Matrix<Scalar,Dynamic,Dynamic,SparseMatrixType::IsRowMajor?RowMajor:ColMajor> DenseMatrix; in sparse_block() typedef 45 DenseMatrix refMat = DenseMatrix::Zero(rows, cols); in sparse_block() 123 DenseMatrix refMat2 = DenseMatrix::Zero(rows, cols); in sparse_block() 186 DenseMatrix refMat2 = DenseMatrix::Zero(rows, cols); in sparse_block() 219 DenseMatrix refMat2 = DenseMatrix::Zero(rows, cols); in sparse_block() 266 DenseMatrix refMat3(rows, cols); refMat3.setZero(); in sparse_block()
|
D | sparse_permutations.cpp | 51 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; in sparse_permutations() typedef 60 DenseMatrix mat_d = DenseMatrix::Zero(rows, cols), up_sym_d, lo_sym_d, res_d; in sparse_permutations() 71 VERIFY_IS_APPROX(up, DenseMatrix(mat_d.template triangularView<Upper>())); in sparse_permutations() 72 VERIFY_IS_APPROX(lo, DenseMatrix(mat_d.template triangularView<Lower>())); in sparse_permutations()
|
D | sparse_vector.cpp | 16 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; in sparse_vector() typedef 24 DenseMatrix refM1 = DenseMatrix::Zero(rows, rows); in sparse_vector()
|
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
D | DGMRES.h | 119 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; 211 ComplexVector schurValues(const ComplexSchur<DenseMatrix>& schurofH) const; 212 ComplexVector schurValues(const RealSchur<DenseMatrix>& schurofH) const; 215 mutable DenseMatrix m_V; // Krylov basis vectors 216 mutable DenseMatrix m_H; // Hessenberg matrix 217 mutable DenseMatrix m_Hes; // Initial hessenberg matrix wihout Givens rotations applied 219 mutable DenseMatrix m_U; // Vectors that form the basis of the invariant subspace 220 mutable DenseMatrix m_MU; // matrix operator applied to m_U (for next cycles) 221 mutable DenseMatrix m_T; /* T=U^T*M^{-1}*A*U */ 222 mutable PartialPivLU<DenseMatrix> m_luT; // LU factorization of m_T [all …]
|
/external/eigen/unsupported/test/ |
D | sparse_extra.cpp | 58 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; in sparse_extra() typedef 63 DenseMatrix refMat = DenseMatrix::Zero(rows, cols); in sparse_extra()
|
/external/eigen/bench/ |
D | sparse_lu.cpp | 96 DenseMatrix m1(rows,cols); in main() 101 FullPivLU<DenseMatrix> lu(m1); in main()
|
D | BenchSparseUtil.h | 23 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef 62 void eiToDense(const EigenSparseMatrix& src, DenseMatrix& dst) in eiToDense()
|
D | sparse_cholesky.cpp | 103 DenseMatrix m1(rows,cols); in main() 113 LLT<DenseMatrix> chol(m1); in main()
|
D | sparse_transpose.cpp | 52 DenseMatrix m1(rows,cols), m3(rows,cols); in main()
|
D | sparse_dense_product.cpp | 72 DenseMatrix m1(rows,cols); in main()
|
D | sparse_product.cpp | 119 DenseMatrix m1(rows,cols), m2(rows,cols), m3(rows,cols); in main()
|
D | sparse_trisolver.cpp | 81 DenseMatrix m1(rows,cols); in main()
|
D | spmv.cpp | 96 DenseMatrix dm(rows,cols), (rows,cols); in main()
|
/external/eigen/bench/spbench/ |
D | sp_solver.cpp | 24 typedef Matrix<double, Dynamic, Dynamic> DenseMatrix; in main() typedef
|
D | test_sparseLU.cpp | 23 typedef Matrix<scalar, Dynamic, Dynamic> DenseMatrix; in main() typedef
|
/external/eigen/Eigen/src/SparseQR/ |
D | SparseQR.h | 660 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
|