You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

149 lines
3.8 KiB

  1. #include <Eigen/Sparse>
  2. #include <bench/BenchTimer.h>
  3. #include <set>
  4. using namespace std;
  5. using namespace StormEigen;
  6. using namespace StormEigen;
  7. #ifndef SIZE
  8. #define SIZE 1024
  9. #endif
  10. #ifndef DENSITY
  11. #define DENSITY 0.01
  12. #endif
  13. #ifndef SCALAR
  14. #define SCALAR double
  15. #endif
  16. typedef SCALAR Scalar;
  17. typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
  18. typedef Matrix<Scalar,Dynamic,1> DenseVector;
  19. typedef SparseMatrix<Scalar> EigenSparseMatrix;
  20. void fillMatrix(float density, int rows, int cols, EigenSparseMatrix& dst)
  21. {
  22. dst.reserve(double(rows)*cols*density);
  23. for(int j = 0; j < cols; j++)
  24. {
  25. for(int i = 0; i < rows; i++)
  26. {
  27. Scalar v = (internal::random<float>(0,1) < density) ? internal::random<Scalar>() : 0;
  28. if (v!=0)
  29. dst.insert(i,j) = v;
  30. }
  31. }
  32. dst.finalize();
  33. }
  34. void fillMatrix2(int nnzPerCol, int rows, int cols, EigenSparseMatrix& dst)
  35. {
  36. // std::cout << "alloc " << nnzPerCol*cols << "\n";
  37. dst.reserve(nnzPerCol*cols);
  38. for(int j = 0; j < cols; j++)
  39. {
  40. std::set<int> aux;
  41. for(int i = 0; i < nnzPerCol; i++)
  42. {
  43. int k = internal::random<int>(0,rows-1);
  44. while (aux.find(k)!=aux.end())
  45. k = internal::random<int>(0,rows-1);
  46. aux.insert(k);
  47. dst.insert(k,j) = internal::random<Scalar>();
  48. }
  49. }
  50. dst.finalize();
  51. }
  52. void eiToDense(const EigenSparseMatrix& src, DenseMatrix& dst)
  53. {
  54. dst.setZero();
  55. for (int j=0; j<src.cols(); ++j)
  56. for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it)
  57. dst(it.index(),j) = it.value();
  58. }
  59. #ifndef NOGMM
  60. #include "gmm/gmm.h"
  61. typedef gmm::csc_matrix<Scalar> GmmSparse;
  62. typedef gmm::col_matrix< gmm::wsvector<Scalar> > GmmDynSparse;
  63. void eiToGmm(const EigenSparseMatrix& src, GmmSparse& dst)
  64. {
  65. GmmDynSparse tmp(src.rows(), src.cols());
  66. for (int j=0; j<src.cols(); ++j)
  67. for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it)
  68. tmp(it.index(),j) = it.value();
  69. gmm::copy(tmp, dst);
  70. }
  71. #endif
  72. #ifndef NOMTL
  73. #include <boost/numeric/mtl/mtl.hpp>
  74. typedef mtl::compressed2D<Scalar, mtl::matrix::parameters<mtl::tag::col_major> > MtlSparse;
  75. typedef mtl::compressed2D<Scalar, mtl::matrix::parameters<mtl::tag::row_major> > MtlSparseRowMajor;
  76. void eiToMtl(const EigenSparseMatrix& src, MtlSparse& dst)
  77. {
  78. mtl::matrix::inserter<MtlSparse> ins(dst);
  79. for (int j=0; j<src.cols(); ++j)
  80. for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it)
  81. ins[it.index()][j] = it.value();
  82. }
  83. #endif
  84. #ifdef CSPARSE
  85. extern "C" {
  86. #include "cs.h"
  87. }
  88. void eiToCSparse(const EigenSparseMatrix& src, cs* &dst)
  89. {
  90. cs* aux = cs_spalloc (0, 0, 1, 1, 1);
  91. for (int j=0; j<src.cols(); ++j)
  92. for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it)
  93. if (!cs_entry(aux, it.index(), j, it.value()))
  94. {
  95. std::cout << "cs_entry error\n";
  96. exit(2);
  97. }
  98. dst = cs_compress(aux);
  99. // cs_spfree(aux);
  100. }
  101. #endif // CSPARSE
  102. #ifndef NOUBLAS
  103. #include <boost/numeric/ublas/vector.hpp>
  104. #include <boost/numeric/ublas/matrix.hpp>
  105. #include <boost/numeric/ublas/io.hpp>
  106. #include <boost/numeric/ublas/triangular.hpp>
  107. #include <boost/numeric/ublas/vector_sparse.hpp>
  108. #include <boost/numeric/ublas/matrix_sparse.hpp>
  109. #include <boost/numeric/ublas/vector_of_vector.hpp>
  110. #include <boost/numeric/ublas/operation.hpp>
  111. typedef boost::numeric::ublas::compressed_matrix<Scalar,boost::numeric::ublas::column_major> UBlasSparse;
  112. void eiToUblas(const EigenSparseMatrix& src, UBlasSparse& dst)
  113. {
  114. dst.resize(src.rows(), src.cols(), false);
  115. for (int j=0; j<src.cols(); ++j)
  116. for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it)
  117. dst(it.index(),j) = it.value();
  118. }
  119. template <typename EigenType, typename UblasType>
  120. void eiToUblasVec(const EigenType& src, UblasType& dst)
  121. {
  122. dst.resize(src.size());
  123. for (int j=0; j<src.size(); ++j)
  124. dst[j] = src.coeff(j);
  125. }
  126. #endif
  127. #ifdef OSKI
  128. extern "C" {
  129. #include <oski/oski.h>
  130. }
  131. #endif