PARALUTION  1.0.0
PARALUTION
host_io.hpp
Go to the documentation of this file.
1 #ifndef PARALUTION_HOST_IO_HPP_
2 #define PARALUTION_HOST_IO_HPP_
3 
4 #include <string>
5 
6 namespace paralution {
7 
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);
11 
12 template <typename ValueType>
13 bool write_matrix_mtx(const int nrow, const int ncol, const int nnz,
14  const int *row, const int *col, const ValueType *val, const std::string filename);
15 
16 
17 }
18 
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