ScaMaC  0.8.2
A Scalable Matrix Collection
scamac_internal.h
Go to the documentation of this file.
1 
8 #ifndef SCAMAC_INTERNAL_H
9 #define SCAMAC_INTERNAL_H
10 
11 #include "scamac_inttypes.h"
12 #include "scamac_error.h"
13 #include "scamac_defs.h"
14 #include "scamac_sparserow.h"
15 
16 typedef struct {
17  ScamacIdx nrow; // number of rows
18  ScamacIdx ncol; // number of columns
19  ScamacIdx maxnzrow; // maximal number of non-zeros per row
20  ScamacIdx maxnzcol; // maximal number of non-zeros per column
21  ScamacIdx maxnzgen; // maximal number of entries added to sparserow during generation [ maxnzrow,maxnzcol <= maxnzgen]
22  ScamacIdx maxnz; // maximal number of non-zeros [maxnz <= min(nrow*maxnzrow, ncol*maxnzcol)]
23  int valtype; // SCAMAC_NONE or SCAMAC_VAL_REAL or SCAMAC_VAL_COMPLEX
24  int symmetry; // SCAMAC_NONE or SCAMAC_SYMMETRIC or SCAMAC_HERMITIAN
25 } scamac_info_st;
26 
27 typedef ScamacErrorCode (*scamac_gen_work_alloc_ft)(const void * par, const void * tab, void ** ws);
28 typedef ScamacErrorCode (*scamac_gen_work_free_ft)(void * ws);
29 typedef ScamacErrorCode (*scamac_gen_tables_create_ft)(const void * par, void ** tables, scamac_info_st * info);
30 typedef ScamacErrorCode (*scamac_gen_tables_destroy_ft)(void * tables);
31 typedef ScamacErrorCode (*scamac_gen_row_ft)(const void * par, const void * table, void * ws, ScamacIdx irow, ScamacFlag flag, void *row);
32 typedef ScamacErrorCode (*scamac_gen_check_ft)(const void * par, char ** desc);
33 
34 typedef ScamacErrorCode (*scamac_gen_unwrap_ft)(const void * wrapped_par, void *par);
35 
36 typedef ScamacErrorCode (*scamac_gen_coord_ft)(const void * par, const void * table, void * ws, ScamacIdx idx, double * x, double * y, double * z, int * ilayer, ScamacIdx * iblock);
37 
38 struct scamac_generator_st {
39  char name[SCAMAC_NAME_LENGTH];
40 
41  void * par;
42 
43  scamac_gen_work_alloc_ft fct_work_alloc;
44  scamac_gen_work_free_ft fct_work_free;
45  scamac_gen_tables_create_ft fct_tables_create;
46  scamac_gen_tables_destroy_ft fct_tables_destroy;
47  scamac_gen_row_ft fct_gen_row;
48  scamac_gen_check_ft fct_check;
49 
50  // for "wrappers"
51  bool needs_unwrapping;
52  void * wrapped_par;
53  scamac_gen_unwrap_ft fct_unwrap_par;
54  scamac_gen_check_ft fct_check_wrapped;
55 
56  // for coordinates (new feature)
57  scamac_gen_coord_ft fct_coord;
58 
59  // fully set after "finalize"
60  bool needs_finalization;
61  void * tables;
62  scamac_info_st info;
63 
64 };
65 
66 struct scamac_workspace_st {
67  scamac_sparserow_real_st * row_real;
68  scamac_sparserow_cplx_st * row_cplx;
69  scamac_gen_work_free_ft fct_work_free;
70  void * ws;
71 };
72 
73 // macro for scamac_matrix_***_check routines
74 #define SCAMAC_DESC_ERR(cond,conddesc) \
75  do { \
76  if (cond) { \
77  err=SCAMAC_EINPUT; \
78  if (desc) {scamac_string_append(&str,conddesc"\n");} \
79  } \
80  } while (0)
81 #define SCAMAC_DESC_WARN(cond,conddesc) \
82  do { \
83  if (cond) { \
84  err=SCAMAC_EWARNING; \
85  if (desc) {scamac_string_append(&str,"[WARNING] "conddesc"\n");} \
86  } \
87  } while (0)
88 
89 #endif /* SCAMAC_INTERNAL_H */
basic ScaMaC definitions
ScaMaC index/integer types.
ScaMaC data structure and macro definitions.