-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.list
41 lines (41 loc) · 936 Bytes
/
types.list
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#-*- Python -*-
types_list = [
{'type':'gfloat',
't':'f',
'TYPE':'FLOAT',
'T':'F',
'alt_type':'gdouble',
'alt_t':'d',
'ALT_TYPE':'DOUBLE',
'ALT_T':'D',
'min':'0.0',
'max':'1.0',
'def':'1.0',
'tcode':'.10g',
'epsilon':'1.e-7',
'MPI_DATATYPE':'MPI_FLOAT',
'key_type':'guint32',
'kcode':'\"G_GUINT32_FORMAT\"',
'kmod':'\"G_GINT32_MODIFIER\"',
'KEY_MPI_DATATYPE':'MPI_UNSIGNED_LONG',
},
{'type':'gdouble',
't':'d',
'TYPE':'DOUBLE',
'T':'D',
'alt_type':'gfloat',
'alt_t':'f',
'ALT_TYPE':'FLOAT',
'ALT_T':'F',
'min':'0.0',
'max':'1.0',
'def':'1.0',
'tcode':'.10lg',
'epsilon':'1.e-14',
'MPI_DATATYPE':'MPI_DOUBLE',
'key_type':'guint64',
'kcode':'\"G_GUINT64_FORMAT\"',
'kmod':'\"G_GINT64_MODIFIER\"',
'KEY_MPI_DATATYPE':'MPI_UNSIGNED_LONG_LONG',
}
]