Home
last modified time | relevance | path

Searched refs:nnzPerCol (Results 1 – 3 of 3) sorted by relevance

/external/eigen/bench/
Dsparse_product.cpp107 for (int nnzPerCol = NNZPERCOL; nnzPerCol>1; nnzPerCol/=1.1) in main() local
111 fillMatrix2(nnzPerCol, rows, cols, sm1); in main()
112 fillMatrix2(nnzPerCol, rows, cols, sm2); in main()
118 std::cout << "Eigen Dense\t" << nnzPerCol << "%\n"; in main()
227 std::cout << "CSparse \t" << nnzPerCol << "%\n"; in main()
253 std::cout << "ublas\t" << nnzPerCol << "%\n"; in main()
266 std::cout << "GMM++ sparse\t" << nnzPerCol << "%\n"; in main()
297 std::cout << "MTL4\t" << nnzPerCol << "%\n"; in main()
Dspmv.cpp42 int nnzPerCol = 40; in main() local
59 nnzPerCol = atoi(argv[i]+1); in main()
80 …std::cout << "SpMV " << rows << " x " << cols << " with " << nnzPerCol << " non zeros per column. … in main()
87 while (nnzPerCol>=4) in main()
89 std::cout << "nnz: " << nnzPerCol << "\n"; in main()
91 fillMatrix2(nnzPerCol, rows, cols, sm); in main()
224 if(nnzPerCol==1) in main()
226 nnzPerCol -= nnzPerCol/2; in main()
DBenchSparseUtil.h42 void fillMatrix2(int nnzPerCol, int rows, int cols, EigenSparseMatrix& dst) in fillMatrix2() argument
45 dst.reserve(nnzPerCol*cols); in fillMatrix2()
49 for(int i = 0; i < nnzPerCol; i++) in fillMatrix2()