OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nnzPerCol
(Results
1 - 2
of
2
) sorted by null
/external/eigen/bench/
spmv.cpp
42
int
nnzPerCol
= 40;
59
nnzPerCol
= atoi(argv[i]+1);
80
std::cout << "SpMV " << rows << " x " << cols << " with " <<
nnzPerCol
<< " non zeros per column. (" << repeats << " repeats, and " << tries << " tries)\n\n";
87
while (
nnzPerCol
>=4)
89
std::cout << "nnz: " <<
nnzPerCol
<< "\n";
91
fillMatrix2(
nnzPerCol
, rows, cols, sm);
224
if(
nnzPerCol
==1)
226
nnzPerCol
-=
nnzPerCol
/2;
sparse_product.cpp
13
#ifndef
NNZPERCOL
14
#define
NNZPERCOL
6
107
for (int
nnzPerCol
=
NNZPERCOL
;
nnzPerCol
>1;
nnzPerCol
/=1.1)
111
fillMatrix2(
nnzPerCol
, rows, cols, sm1);
112
fillMatrix2(
nnzPerCol
, rows, cols, sm2);
118
std::cout << "Eigen Dense\t" <<
nnzPerCol
<< "%\n";
227
std::cout << "CSparse \t" <<
nnzPerCol
<< "%\n"
[
all
...]
Completed in 39 milliseconds