Home | History | Annotate | Download | only in bench

Lines Matching refs:EigenSparseMatrix

25 typedef SparseMatrix<Scalar> EigenSparseMatrix;
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& src, cs* &dst)
105 for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it)
128 void eiToUblas(const EigenSparseMatrix& src, UBlasSparse& dst)
132 for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it)