42 std::string filename,
double **val,
int **cind,
int **rptr,
43 int *N,
int *M,
Shape *shape,
bool removeZeros)
45 std::cout <<
"# Readfile MatrixMarket" << std::endl;
46 std::ifstream ifs(filename);
48 std::cerr <<
"# Could not open input file." << std::endl;
52 std::getline(ifs, line);
53 if(line.find(
"complex") != std::string::npos) {
54 std::cerr <<
"# Header line is not valid." << std::endl;
57 if(line.find(
"symmetric") != std::string::npos) { shape[0] = Sym; }
58 else if(line.find(
"general") != std::string::npos) { shape[0] = Unsym; }
59 else { std::cerr <<
"# Header line is not valid." << std::endl;
return false; }
62 while(std::getline(ifs, line)) {
63 if(line[0] ==
'%') {
continue; }
64 std::istringstream iss(line);
65 iss >> N[0] >> M[0] >> PE;
68 std::cout <<
"# " << N[0] <<
" " << M[0] <<
" " << PE << std::endl;
69 *val = utils::SafeMalloc<double>(PE);
70 *cind = utils::SafeMalloc<int>(PE);
71 *rptr = utils::SafeMalloc<int>(N[0]+1);
72 int *row = utils::SafeMalloc<int>(PE);
77 for(
int i=0; i<PE; i++) {
78 ifs >> t_row >> t_col >> t_val;
79 if(removeZeros && t_val == 0)
continue;
82 (*cind)[nnz] = t_col-1;
86 *val = utils::SafeRealloc<double>(*val, nnz);
87 *cind = utils::SafeRealloc<int>(*cind, nnz);
89 helper::QuickSort<int, int, double>(row, *cind, *val, 0, nnz-1);
92 for(
int i=0; i<N[0]; i++) {
94 while(row[cnt] == i) {
96 if(cnt == nnz) {
break; }
98 (*rptr)[i+1] = (*rptr)[i] + num;
99 helper::QuickSort<int, double>(*cind, *val, (*rptr)[i], (*rptr)[i+1]-1);
Shape
enum for the shape of matrices.
bool ReadMatrixMarket(std::string filename, double **val, int **cind, int **rptr, int *N, int *M, Shape *shape, bool removeZeros)
Get a matrix in the CSR format from a MatrixMarket file.
The top-level namespace of SenK.
Some supplemental functions are defined.
Utility functions are defined.