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

  /external/eigen/bench/
sparse_randomsetter.cpp 45 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);
BenchSparseUtil.h 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
    [all...]
sparse_lu.cpp 46 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);
sparse_transpose.cpp 42 EigenSparseMatrix sm1(rows,cols), sm3(rows,cols);
sparse_dense_product.cpp 58 EigenSparseMatrix sm1(rows,cols);
sparse_product.cpp 104 EigenSparseMatrix sm1(rows,cols), sm2(rows,cols), sm3(rows,cols), sm4(rows,cols);
202 // EigenSparseMatrix sm4 = sm1.transpose();
spmv.cpp 82 EigenSparseMatrix sm(rows,cols);

Completed in 135 milliseconds