ScaMaC  0.8.2
A Scalable Matrix Collection
scamac_inttypes.h
Go to the documentation of this file.
1 
8 #ifndef SCAMAC_INTTYPES_H
9 #define SCAMAC_INTTYPES_H
10 
11 #include "scamac_config.h"
12 #include <inttypes.h>
13 
14 
15 /*
16  * some integer parameters, e.g., n_sites or n_fermions for the Hubbard example,
17  * or the number of sites per axis for a 3D Laplace discretization grid,
18  * should be "reasonably small" (even if the resulting matrix is "huge").
19  * By definition, an integer n is "reasonably small" if abs(n) <= SCAMACHUGEINT.
20  *
21  * SCAMACHUGEINT acts mainly as a failsafe against "irresponsible" parameter choices
22  * (e.g., when generating matrices in a loop).
23  *
24  * We set, deliberately, SCAMACHUGEINT = 2^20, but this value is not mandatory.
25  * SCAMACHUGEINT should be much smaller than SCAMACIDXMAX.
26  *
27  * Note: The memory consumption for generator tables or workspace does not exceed
28  * a reasonable multiple of SCAMACHUGEINT (here, some MByte).
29  *
30  */
31 #define SCAMACHUGEINT (1 << 20)
32 
33 /* index and integer type
34  * ScamacIdx is the (possibly huge) index type for ScamacGenerator etc.
35  * ScamacInt is the (usually smaller) integer type for actual storage of sparse matrices,
36  * as in scamac_sparsemat.h for the Scamac toolkit
37  * We use signed int because - well, we just do (and FORTRAN!).
38  */
39 #ifdef SCAMAC_INDEX_TYPE_int64
40 typedef int64_t ScamacIdx;
41 typedef int32_t ScamacInt;
42 //typedef int_fast32_t ScamacInt;
43 static const ScamacIdx SCAMAC_IDX_MAX = INT64_MAX;
44 static const ScamacInt SCAMAC_INT_MAX = INT32_MAX;
45 //static const ScamacInt SCAMAC_INT_MAX = INT_FAST32_MAX;
46 #define SCAMACPRIDX PRId64
47 #define SCAMACPRINT PRId32
48 #elif defined SCAMAC_INDEX_TYPE_int32
49 typedef int32_t ScamacIdx;
50 typedef int32_t ScamacInt;
51 //typedef int_fast32_t ScamacInt;
52 static const ScamacIdx SCAMAC_IDX_MAX = INT32_MAX;
53 static const ScamacInt SCAMAC_INT_MAX = INT32_MAX;
54 //static const ScamacInt SCAMAC_INT_MAX = INT_FAST32_MAX;
55 #define SCAMACPRIDX PRId32
56 #define SCAMACPRINT PRIdFAST32
57 #else
58 typedef int ScamacIdx;
59 #error "Unknown SCAMAC_INDEX_TYPE"
60 #endif
61 
62 
63 #endif /* SCAMAC_INTTYPES_H */