@@ -6,26 +6,26 @@ WARNING: DO NOT edit .pxi FILE directly, .pxi is generated from .pxi.in
6
6
7
7
{{py:
8
8
9
- # dtype, ttype, c_type, to_c_type, to_dtype
9
+ # dtype, ttype, c_type, to_c_type
10
10
dtypes = [('complex128', 'complex128', 'khcomplex128_t',
11
- 'to_khcomplex128_t', 'to_complex128' ),
11
+ 'to_khcomplex128_t'),
12
12
('complex64', 'complex64', 'khcomplex64_t',
13
- 'to_khcomplex64_t', 'to_complex64' ),
14
- ('float64', 'float64', 'float64_t', '', '' ),
15
- ('float32', 'float32', 'float32_t', '', '' ),
16
- ('uint64', 'uint64', 'uint64_t', '', '' ),
17
- ('uint32', 'uint32', 'uint32_t', '', '' ),
18
- ('uint16', 'uint16', 'uint16_t', '', '' ),
19
- ('uint8', 'uint8', 'uint8_t', '', '' ),
20
- ('object', 'pymap', 'object', '', '' ),
21
- ('int64', 'int64', 'int64_t', '', '' ),
22
- ('int32', 'int32', 'int32_t', '', '' ),
23
- ('int16', 'int16', 'int16_t', '', '' ),
24
- ('int8', 'int8', 'int8_t', '', '' )]
13
+ 'to_khcomplex64_t'),
14
+ ('float64', 'float64', 'float64_t', ''),
15
+ ('float32', 'float32', 'float32_t', ''),
16
+ ('uint64', 'uint64', 'uint64_t', ''),
17
+ ('uint32', 'uint32', 'uint32_t', ''),
18
+ ('uint16', 'uint16', 'uint16_t', ''),
19
+ ('uint8', 'uint8', 'uint8_t', ''),
20
+ ('object', 'pymap', 'object', ''),
21
+ ('int64', 'int64', 'int64_t', ''),
22
+ ('int32', 'int32', 'int32_t', ''),
23
+ ('int16', 'int16', 'int16_t', ''),
24
+ ('int8', 'int8', 'int8_t', '')]
25
25
26
26
}}
27
27
28
- {{for dtype, ttype, c_type, to_c_type, to_dtype in dtypes}}
28
+ {{for dtype, ttype, c_type, to_c_type in dtypes}}
29
29
30
30
31
31
@cython.wraparound(False)
0 commit comments