//g++ -O3 -g0 -DNDEBUG sparse_product.cpp -I.. -I/home/gael/Coding/LinearAlgebra/mtl4/ -DDENSITY=0.005 -DSIZE=10000 && ./a.out //g++ -O3 -g0 -DNDEBUG sparse_product.cpp -I.. -I/home/gael/Coding/LinearAlgebra/mtl4/ -DDENSITY=0.05 -DSIZE=2000 && ./a.out // -DNOGMM -DNOMTL -DCSPARSE // -I /home/gael/Coding/LinearAlgebra/CSparse/Include/ /home/gael/Coding/LinearAlgebra/CSparse/Lib/libcsparse.a #ifndef SIZE #define SIZE 100000 #endif #ifndef NBPERROW #define NBPERROW 24 #endif #ifndef REPEAT #define REPEAT 1 #endif #ifndef NOGOOGLE #define EIGEN_GOOGLEHASH_SUPPORT #include #endif #include "BenchSparseUtil.h" #define CHECK_MEM // #define CHECK_MEM std/**/::cout << "check mem\n"; getchar(); #define BENCH(X) \ timer.reset(); \ for (int _j=0; _j Coordinates; typedef std::vector Values; EIGEN_DONT_INLINE Scalar* setinnerrand_eigen(const Coordinates& coords, const Values& vals); EIGEN_DONT_INLINE Scalar* setrand_eigen_gnu_hash(const Coordinates& coords, const Values& vals); EIGEN_DONT_INLINE Scalar* setrand_eigen_google_dense(const Coordinates& coords, const Values& vals); EIGEN_DONT_INLINE Scalar* setrand_eigen_google_sparse(const Coordinates& coords, const Values& vals); EIGEN_DONT_INLINE Scalar* setrand_ublas_mapped(const Coordinates& coords, const Values& vals); EIGEN_DONT_INLINE Scalar* setrand_ublas_coord(const Coordinates& coords, const Values& vals); EIGEN_DONT_INLINE Scalar* setrand_ublas_compressed(const Coordinates& coords, const Values& vals); EIGEN_DONT_INLINE Scalar* setrand_ublas_genvec(const Coordinates& coords, const Values& vals); EIGEN_DONT_INLINE Scalar* setrand_mtl(const Coordinates& coords, const Values& vals); int main(int argc, char *argv[]) { int rows = SIZE; int cols = SIZE; bool fullyrand = false; //float density = float(NBPERROW)/float(SIZE); BenchTimer timer; Coordinates coords; Values values; if(fullyrand) { for (int i=0; i(0,rows-1),ei_random(0,cols-1))); values.push_back(ei_random()); } } else { for (int j=0; j(0,rows-1),j)); values.push_back(ei_random()); } } std::cout << "nnz = " << coords.size() << "\n"; CHECK_MEM // dense matrices #ifdef DENSEMATRIX { timer.reset(); timer.start(); for (int k=0; k mat(SIZE,SIZE); mat.startFill(2000000/*coords.size()*/); for (int i=0; i mat(SIZE,SIZE); { RandomSetter, StdMapTraits > setter(mat); for (int i=0; i mat(SIZE,SIZE); { RandomSetter, GoogleDenseHashMapTraits> setter(mat); for (int i=0; i mat(SIZE,SIZE); { RandomSetter, GoogleSparseHashMapTraits> setter(mat); for (int i=0; i aux(SIZE,SIZE); for (int i=0; i mat(aux); return 0;// &mat(coords[0].x(), coords[0].y()); } /*EIGEN_DONT_INLINE Scalar* setrand_ublas_coord(const Coordinates& coords, const Values& vals) { using namespace boost; using namespace boost::numeric; using namespace boost::numeric::ublas; coordinate_matrix aux(SIZE,SIZE); for (int i=0; i mat(aux); return 0;//&mat(coords[0].x(), coords[0].y()); } EIGEN_DONT_INLINE Scalar* setrand_ublas_compressed(const Coordinates& coords, const Values& vals) { using namespace boost; using namespace boost::numeric; using namespace boost::numeric::ublas; compressed_matrix mat(SIZE,SIZE); for (int i=0; i > foo; generalized_vector_of_vector > > aux(SIZE,SIZE); for (int i=0; i mat(aux); return 0;//&mat(coords[0].x(), coords[0].y()); } #endif #ifndef NOMTL EIGEN_DONT_INLINE void setrand_mtl(const Coordinates& coords, const Values& vals); #endif