Searched refs:EigenSparseMatrix (Results 1 - 8 of 8) sorted by relevance

/external/eigen/bench/
H A Dsparse_randomsetter.cpp45 void dostuff(const char* name, EigenSparseMatrix& sm1)
71 EigenSparseMatrix sm1(rows,cols), sm2(rows,cols);
88 dostuff<RandomSetter<EigenSparseMatrix,StdMapTraits,Bits> >("std::map ", sm1);
89 dostuff<RandomSetter<EigenSparseMatrix,GnuHashMapTraits,Bits> >("gnu::hash_map", sm1);
90 dostuff<RandomSetter<EigenSparseMatrix,GoogleDenseHashMapTraits,Bits> >("google::dense", sm1);
91 dostuff<RandomSetter<EigenSparseMatrix,GoogleSparseHashMapTraits,Bits> >("google::sparse", sm1);
94 // RandomSetter<EigenSparseMatrix,GnuHashMapTraits,Bits> set1(sm1);
103 // RandomSetter<EigenSparseMatrix,GoogleDenseHashMapTraits,Bits> set1(sm1);
112 // RandomSetter<EigenSparseMatrix,GoogleSparseHashMapTraits,Bits> set1(sm1);
H A DBenchSparseUtil.h25 typedef SparseMatrix<Scalar> EigenSparseMatrix; typedef
27 void fillMatrix(float density, int rows, int cols, EigenSparseMatrix& dst)
42 void fillMatrix2(int nnzPerCol, int rows, int cols, EigenSparseMatrix& dst)
62 void eiToDense(const EigenSparseMatrix& src, DenseMatrix& dst)
66 for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it)
74 void eiToGmm(const EigenSparseMatrix& src, GmmSparse& dst)
78 for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it)
88 void eiToMtl(const EigenSparseMatrix& src, MtlSparse& dst)
92 for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it)
101 void eiToCSparse(const EigenSparseMatrix
[all...]
H A Dsparse_lu.cpp46 void doEigen(const char* name, const EigenSparseMatrix& sm1, const VectorX& b, VectorX& x, int flags = 0)
50 SparseLU<EigenSparseMatrix,Backend> lu(sm1, flags);
87 EigenSparseMatrix sm1(rows, cols);
H A Dsparse_transpose.cpp42 EigenSparseMatrix sm1(rows,cols), sm3(rows,cols);
H A Dsparse_dense_product.cpp58 EigenSparseMatrix sm1(rows,cols);
H A Dsparse_product.cpp104 EigenSparseMatrix sm1(rows,cols), sm2(rows,cols), sm3(rows,cols), sm4(rows,cols);
202 // EigenSparseMatrix sm4 = sm1.transpose();
H A Dspmv.cpp82 EigenSparseMatrix sm(rows,cols);
/external/ceres-solver/internal/ceres/
H A Dcovariance_impl.cc667 typedef Eigen::SparseMatrix<double, Eigen::ColMajor> EigenSparseMatrix; typedef
670 EigenSparseMatrix sparse_jacobian =
677 Eigen::SparseQR<EigenSparseMatrix, Eigen::COLAMDOrdering<int> >

Completed in 1913 milliseconds