HomeSort by relevance Sort by last modified time
    Searched refs:DenseMatrix (Results 1 - 19 of 19) sorted by null

  /external/eigen/test/
sparse_product.cpp 12 template<typename SparseMatrixType, typename DenseMatrix, bool IsRowMajor=SparseMatrixType::IsRowMajor> struct test_outer;
14 template<typename SparseMatrixType, typename DenseMatrix> struct test_outer<SparseMatrixType,DenseMatrix,false> {
15 static void run(SparseMatrixType& m2, SparseMatrixType& m4, DenseMatrix& refMat2, DenseMatrix& refMat4) {
23 template<typename SparseMatrixType, typename DenseMatrix> struct test_outer<SparseMatrixType,DenseMatrix,true> {
24 static void run(SparseMatrixType& m2, SparseMatrixType& m4, DenseMatrix& refMat2, DenseMatrix& refMat4) {
47 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
    [all...]
sparse_basic.cpp 23 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
28 DenseMatrix refMat = DenseMatrix::Zero(rows, cols);
95 DenseMatrix m1(rows,cols);
115 DenseMatrix m1(rows,cols);
139 DenseMatrix m1(rows,cols);
160 DenseMatrix refM1 = DenseMatrix::Zero(rows, rows);
161 DenseMatrix refM2 = DenseMatrix::Zero(rows, rows)
    [all...]
sparse_solver.h 135 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
141 DenseMatrix dM(size, size);
174 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
179 DenseMatrix dA;
187 DenseMatrix dB(size,rhsCols);
226 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
230 DenseMatrix dA;
244 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
261 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
267 DenseMatrix dA
    [all...]
sparse_solvers.cpp 36 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
49 DenseMatrix refMat2 = DenseMatrix::Zero(rows, cols);
81 DenseMatrix refMatB = DenseMatrix::Zero(rows, rows);
sparse_vector.cpp 16 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
24 DenseMatrix refM1 = DenseMatrix::Zero(rows, rows);
sparse_permutations.cpp 21 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
28 DenseMatrix mat_d = DenseMatrix::Zero(rows, cols), up_sym_d, lo_sym_d, res_d;
39 VERIFY_IS_APPROX(up, DenseMatrix(mat_d.template triangularView<Upper>()));
40 VERIFY_IS_APPROX(lo, DenseMatrix(mat_d.template triangularView<Lower>()));
  /external/eigen/test/eigen2/
eigen2_sparse_product.cpp 20 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
25 DenseMatrix refMat2 = DenseMatrix::Zero(rows, rows);
26 DenseMatrix refMat3 = DenseMatrix::Zero(rows, rows);
27 DenseMatrix refMat4 = DenseMatrix::Zero(rows, rows);
28 DenseMatrix dm4 = DenseMatrix::Zero(rows, rows);
58 DenseMatrix refM2 = DenseMatrix::Zero(rows, rows)
    [all...]
eigen2_sparse_basic.cpp 54 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
59 DenseMatrix refMat = DenseMatrix::Zero(rows, cols);
167 DenseMatrix m1(rows,cols);
187 DenseMatrix refM1 = DenseMatrix::Zero(rows, rows);
202 DenseMatrix refM1 = DenseMatrix::Zero(rows, rows);
203 DenseMatrix refM2 = DenseMatrix::Zero(rows, rows)
    [all...]
eigen2_sparse_solvers.cpp 36 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
49 DenseMatrix refMat2 = DenseMatrix::Zero(rows, cols);
76 DenseMatrix refMat2(rows, cols);
117 DenseMatrix refMat2(rows, cols);
140 DenseMatrix refMat2(rows, cols);
147 LU<DenseMatrix> refLu(refMat2);
eigen2_sparse_vector.cpp 16 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
24 DenseMatrix refM1 = DenseMatrix::Zero(rows, cols);
  /external/eigen/unsupported/test/
sparse_extra.cpp 60 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
65 DenseMatrix refMat = DenseMatrix::Zero(rows, cols);
120 DenseMatrix refM1 = DenseMatrix::Zero(rows, rows);
  /external/eigen/bench/
sparse_lu.cpp 91 #ifdef DENSEMATRIX
96 DenseMatrix m1(rows,cols);
101 FullPivLU<DenseMatrix> lu(m1);
sparse_transpose.cpp 50 #ifdef DENSEMATRIX
52 DenseMatrix m1(rows,cols), m3(rows,cols);
BenchSparseUtil.h 23 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
62 void eiToDense(const EigenSparseMatrix& src, DenseMatrix& dst)
sparse_cholesky.cpp 98 #ifdef DENSEMATRIX
103 DenseMatrix m1(rows,cols);
108 // BENCH(LLT<DenseMatrix> chol(m1);)
113 LLT<DenseMatrix> chol(m1);
sparse_dense_product.cpp 69 #ifdef DENSEMATRIX
72 DenseMatrix m1(rows,cols);
sparse_product.cpp 116 #ifdef DENSEMATRIX
119 DenseMatrix m1(rows,cols), m2(rows,cols), m3(rows,cols);
sparse_trisolver.cpp 76 #ifdef DENSEMATRIX
81 DenseMatrix m1(rows,cols);
spmv.cpp 94 #ifdef DENSEMATRIX
96 DenseMatrix dm(rows,cols), (rows,cols);

Completed in 311 milliseconds