GHOST  1.1.2
General, Hybrid, and Optimized Sparse Toolkit
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mmio.h
Go to the documentation of this file.
1 /*
2 * Matrix Market I/O library for ANSI C
3 *
4 * See http://math.nist.gov/MatrixMarket for details.
5 *
6 *
7 */
8 
9 #ifndef MM_IO_H
10 #define MM_IO_H
11 
12 #include <stdio.h>
13 
14 #define MM_MAX_LINE_LENGTH 1025
15 #define MatrixMarketBanner "%%MatrixMarket"
16 #define MM_MAX_TOKEN_LENGTH 64
17 
18 typedef char MM_typecode[4];
19 
20 char *mm_typecode_to_str(MM_typecode matcode);
21 
22 int mm_read_banner(FILE *f, MM_typecode *matcode);
23 int mm_read_mtx_crd_size(FILE *f, int *M, int *N, int *nz);
24 int mm_read_mtx_array_size(FILE *f, int *M, int *N);
25 
26 int mm_write_banner(FILE *f, MM_typecode matcode);
27 int mm_write_mtx_crd_size(FILE *f, int M, int N, int nz);
28 int mm_write_mtx_array_size(FILE *f, int M, int N);
29 
30 int mm_read_mtx_crd(char *fname, int *M, int *N, int *nz, int **I_, int **J,
31  double **val, MM_typecode *matcode);
32 
33 /********************* MM_typecode query fucntions ***************************/
34 
35 #define mm_is_matrix(typecode) ((typecode)[0]=='M')
36 
37 #define mm_is_sparse(typecode) ((typecode)[1]=='C')
38 #define mm_is_coordinate(typecode)((typecode)[1]=='C')
39 #define mm_is_dense(typecode) ((typecode)[1]=='A')
40 #define mm_is_array(typecode) ((typecode)[1]=='A')
41 
42 #define mm_is_complex(typecode) ((typecode)[2]=='C')
43 #define mm_is_real(typecode) ((typecode)[2]=='R')
44 #define mm_is_pattern(typecode) ((typecode)[2]=='P')
45 #define mm_is_integer(typecode) ((typecode)[2]=='I')
46 
47 #define mm_is_symmetric(typecode)((typecode)[3]=='S')
48 #define mm_is_general(typecode) ((typecode)[3]=='G')
49 #define mm_is_skew(typecode) ((typecode)[3]=='K')
50 #define mm_is_hermitian(typecode)((typecode)[3]=='H')
51 
52 int mm_is_valid(MM_typecode matcode); /* too complex for a macro */
53 
54 
55 /********************* MM_typecode modify fucntions ***************************/
56 
57 #define mm_set_matrix(typecode) ((*typecode)[0]='M')
58 #define mm_set_coordinate(typecode) ((*typecode)[1]='C')
59 #define mm_set_array(typecode) ((*typecode)[1]='A')
60 #define mm_set_dense(typecode) mm_set_array(typecode)
61 #define mm_set_sparse(typecode) mm_set_coordinate(typecode)
62 
63 #define mm_set_complex(typecode)((*typecode)[2]='C')
64 #define mm_set_real(typecode) ((*typecode)[2]='R')
65 #define mm_set_pattern(typecode)((*typecode)[2]='P')
66 #define mm_set_integer(typecode)((*typecode)[2]='I')
67 
68 
69 #define mm_set_symmetric(typecode)((*typecode)[3]='S')
70 #define mm_set_general(typecode)((*typecode)[3]='G')
71 #define mm_set_skew(typecode) ((*typecode)[3]='K')
72 #define mm_set_hermitian(typecode)((*typecode)[3]='H')
73 
74 #define mm_clear_typecode(typecode) ((*typecode)[0]=(*typecode)[1]= \
75  (*typecode)[2]=' ',(*typecode)[3]='G')
76 
77 #define mm_initialize_typecode(typecode) mm_clear_typecode(typecode)
78 
79 
80 /********************* Matrix Market error codes ***************************/
81 
82 
83 #define MM_COULD_NOT_READ_FILE 11
84 #define MM_PREMATURE_EOF 12
85 #define MM_NOT_MTX 13
86 #define MM_NO_HEADER 14
87 #define MM_UNSUPPORTED_TYPE 15
88 #define MM_LINE_TOO_LONG 16
89 #define MM_COULD_NOT_WRITE_FILE 17
90 
91 
92 /******************** Matrix Market internal definitions ********************
93 
94  MM_matrix_typecode: 4-character sequence
95 
96  ojbect sparse/ data storage
97  dense type scheme
98 
99  string position: [0] [1] [2] [3]
100 
101  Matrix typecode: M(atrix) C(oord) R(eal) G(eneral)
102  A(array) C(omplex) H(ermitian)
103  P(attern) S(ymmetric)
104  I(nteger) K(kew)
105 
106  ***********************************************************************/
107 
108 #define MM_MTX_STR "matrix"
109 #define MM_ARRAY_STR "array"
110 #define MM_DENSE_STR "array"
111 #define MM_COORDINATE_STR "coordinate"
112 #define MM_SPARSE_STR "coordinate"
113 #define MM_COMPLEX_STR "complex"
114 #define MM_REAL_STR "real"
115 #define MM_INT_STR "integer"
116 #define MM_GENERAL_STR "general"
117 #define MM_SYMM_STR "symmetric"
118 #define MM_HERM_STR "hermitian"
119 #define MM_SKEW_STR "skew-symmetric"
120 #define MM_PATTERN_STR "pattern"
121 
122 
123 /* high level routines */
124 
125 int mm_write_mtx_crd(char fname[], int M, int N, int nz, int _I[], int J[],
126  double val[], MM_typecode matcode);
127 int mm_read_mtx_crd_data(FILE *f, int M, int N, int nz, int _I[], int J[],
128  double val[], MM_typecode matcode);
129 int mm_read_mtx_crd_entry(FILE *f, int *_I, int *J, double *real, double *img,
130  MM_typecode matcode);
131 
132 int mm_read_unsymmetric_sparse(const char *fname, int *M_, int *N_, int *nz_,
133  double **val_, int **I_, int **J_);
134 
135 
136 
137 #endif
int mm_write_mtx_array_size(FILE *f, int M, int N)
Definition: mmio.c:251
int mm_write_banner(FILE *f, MM_typecode matcode)
Definition: mmio.c:390
int mm_read_banner(FILE *f, MM_typecode *matcode)
Definition: mmio.c:98
int mm_write_mtx_crd_size(FILE *f, int M, int N, int nz)
Definition: mmio.c:183
int mm_read_mtx_crd_entry(FILE *f, int *_I, int *J, double *real, double *img, MM_typecode matcode)
Definition: mmio.c:302
int mm_read_mtx_crd_size(FILE *f, int *M, int *N, int *nz)
Definition: mmio.c:191
int mm_read_mtx_crd_data(FILE *f, int M, int N, int nz, int _I[], int J[], double val[], MM_typecode matcode)
Definition: mmio.c:267
int mm_read_mtx_array_size(FILE *f, int *M, int *N)
Definition: mmio.c:222
#define N
Definition: bench.c:20
char MM_typecode[4]
Definition: mmio.h:18
int mm_is_valid(MM_typecode matcode)
Definition: mmio.c:88
int mm_read_unsymmetric_sparse(const char *fname, int *M_, int *N_, int *nz_, double **val_, int **I_, int **J_)
Definition: mmio.c:18
int mm_write_mtx_crd(char fname[], int M, int N, int nz, int _I[], int J[], double val[], MM_typecode matcode)
Definition: mmio.c:403
char * mm_typecode_to_str(MM_typecode matcode)
Definition: mmio.c:459
int mm_read_mtx_crd(char *fname, int *M, int *N, int *nz, int **I_, int **J, double **val, MM_typecode *matcode)
Definition: mmio.c:337