Home
last modified time | relevance | path

Searched refs:EigenSparseMatrix (Results 1 – 7 of 7) sorted by relevance

/external/eigen/bench/
DBenchSparseUtil.h25 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 …]
Dsparse_randomsetter.cpp45 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()
Dsparse_lu.cpp46 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()
Dsparse_transpose.cpp42 EigenSparseMatrix sm1(rows,cols), sm3(rows,cols); in main()
Dsparse_dense_product.cpp58 EigenSparseMatrix sm1(rows,cols); in main()
Dsparse_product.cpp104 EigenSparseMatrix sm1(rows,cols), sm2(rows,cols), sm3(rows,cols), sm4(rows,cols); in main()
Dspmv.cpp82 EigenSparseMatrix sm(rows,cols); in main()