1 #ifndef PARALUTION_HOST_IO_HPP_
2 #define PARALUTION_HOST_IO_HPP_
8 template <
typename ValueType>
9 bool read_matrix_mtx(
int &nrow,
int &ncol,
int &
nnz,
int **row,
int **col, ValueType **val,
10 const std::string filename);
12 template <
typename ValueType>
14 const int *row,
const int *col,
const ValueType *val,
const std::string filename);
19 #endif // PARALUTION_HOST_IO_HPP_
nnz
Definition: pcg_example.m:8
bool write_matrix_mtx(const int nrow, const int ncol, const int nnz, const int *row, const int *col, const ValueType *val, const std::string filename)
Definition: host_io.cpp:396
bool read_matrix_mtx(int &nrow, int &ncol, int &nnz, int **row, int **col, ValueType **val, const std::string filename)
Definition: host_io.cpp:359
Definition: backend_manager.cpp:43