ScaMaC  0.8.2
A Scalable Matrix Collection
scamac_sparsemat_io.h
Go to the documentation of this file.
1 
8 #ifndef SCAMAC_SPARSEMAT_IO_H
9 #define SCAMAC_SPARSEMAT_IO_H
10 
11 #include "scamac_error.h"
12 #include "scamac_sparsemat.h"
13 
14 /* output in Matrix Market format */
15 ScamacErrorCode scamac_sparsemat_io_write_mm(const ScamacMatrix *sm, char * fname);
16 
17 /* output in Harwell-Boeing format */
18 ScamacErrorCode scamac_sparsemat_io_write_hb(const ScamacMatrix *sm, char * fname);
19 
20 /* output in MATLAB binary format */
21 ScamacErrorCode scamac_sparsemat_io_write_matlab(const ScamacMatrix *sm, char * fname);
22 
23 /* output in GHOST binary format */
24 ScamacErrorCode scamac_sparsemat_io_write_ghost(const ScamacMatrix *sm, char * fname);
25 
26 
27 #endif /* SCAMAC_SPARSEMAT_IO_H */
Sparse matrix creation and manipulation.
ScaMaC data structure and macro definitions.