Searched refs:EigenSparseMatrix (Results 1 – 7 of 7) sorted by relevance
/external/eigen/bench/ |
D | BenchSparseUtil.h | 25 typedef SparseMatrix<Scalar> EigenSparseMatrix; typedef 27 void fillMatrix(float density, int rows, int cols, EigenSparseMatrix& dst) in fillMatrix() 42 void fillMatrix2(int nnzPerCol, int rows, int cols, EigenSparseMatrix& dst) in fillMatrix2() 62 void eiToDense(const EigenSparseMatrix& src, DenseMatrix& dst) in eiToDense() 66 for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it) in eiToDense() 74 void eiToGmm(const EigenSparseMatrix& src, GmmSparse& dst) in eiToGmm() 78 for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it) in eiToGmm() 88 void eiToMtl(const EigenSparseMatrix& src, MtlSparse& dst) in eiToMtl() 92 for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it) in eiToMtl() 101 void eiToCSparse(const EigenSparseMatrix& src, cs* &dst) in eiToCSparse() [all …]
|
D | sparse_randomsetter.cpp | 45 void dostuff(const char* name, EigenSparseMatrix& sm1) in dostuff() 71 EigenSparseMatrix sm1(rows,cols), sm2(rows,cols); in main() 88 dostuff<RandomSetter<EigenSparseMatrix,StdMapTraits,Bits> >("std::map ", sm1); in main() 89 dostuff<RandomSetter<EigenSparseMatrix,GnuHashMapTraits,Bits> >("gnu::hash_map", sm1); in main() 90 dostuff<RandomSetter<EigenSparseMatrix,GoogleDenseHashMapTraits,Bits> >("google::dense", sm1); in main() 91 dostuff<RandomSetter<EigenSparseMatrix,GoogleSparseHashMapTraits,Bits> >("google::sparse", sm1); in main()
|
D | sparse_lu.cpp | 46 void doEigen(const char* name, const EigenSparseMatrix& sm1, const VectorX& b, VectorX& x, int flag… in doEigen() 50 SparseLU<EigenSparseMatrix,Backend> lu(sm1, flags); in doEigen() 87 EigenSparseMatrix sm1(rows, cols); in main()
|
D | sparse_transpose.cpp | 42 EigenSparseMatrix sm1(rows,cols), sm3(rows,cols); in main()
|
D | sparse_dense_product.cpp | 58 EigenSparseMatrix sm1(rows,cols); in main()
|
D | sparse_product.cpp | 104 EigenSparseMatrix sm1(rows,cols), sm2(rows,cols), sm3(rows,cols), sm4(rows,cols); in main()
|
D | spmv.cpp | 82 EigenSparseMatrix sm(rows,cols); in main()
|