numba-cuda 0.8.0__py3-none-any.whl → 0.9.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (227) hide show
  1. _numba_cuda_redirector.py +17 -13
  2. numba_cuda/VERSION +1 -1
  3. numba_cuda/_version.py +4 -1
  4. numba_cuda/numba/cuda/__init__.py +6 -2
  5. numba_cuda/numba/cuda/api.py +129 -86
  6. numba_cuda/numba/cuda/api_util.py +3 -3
  7. numba_cuda/numba/cuda/args.py +12 -16
  8. numba_cuda/numba/cuda/cg.py +6 -6
  9. numba_cuda/numba/cuda/codegen.py +74 -43
  10. numba_cuda/numba/cuda/compiler.py +232 -113
  11. numba_cuda/numba/cuda/cpp_function_wrappers.cu +1 -2
  12. numba_cuda/numba/cuda/cuda_fp16.h +661 -661
  13. numba_cuda/numba/cuda/cuda_fp16.hpp +3 -3
  14. numba_cuda/numba/cuda/cuda_paths.py +291 -99
  15. numba_cuda/numba/cuda/cudadecl.py +125 -69
  16. numba_cuda/numba/cuda/cudadrv/__init__.py +3 -1
  17. numba_cuda/numba/cuda/cudadrv/devicearray.py +185 -135
  18. numba_cuda/numba/cuda/cudadrv/devices.py +16 -11
  19. numba_cuda/numba/cuda/cudadrv/driver.py +463 -297
  20. numba_cuda/numba/cuda/cudadrv/drvapi.py +241 -207
  21. numba_cuda/numba/cuda/cudadrv/dummyarray.py +66 -54
  22. numba_cuda/numba/cuda/cudadrv/enums.py +1 -1
  23. numba_cuda/numba/cuda/cudadrv/error.py +6 -2
  24. numba_cuda/numba/cuda/cudadrv/libs.py +67 -63
  25. numba_cuda/numba/cuda/cudadrv/linkable_code.py +16 -1
  26. numba_cuda/numba/cuda/cudadrv/mappings.py +16 -14
  27. numba_cuda/numba/cuda/cudadrv/nvrtc.py +138 -29
  28. numba_cuda/numba/cuda/cudadrv/nvvm.py +296 -161
  29. numba_cuda/numba/cuda/cudadrv/rtapi.py +1 -1
  30. numba_cuda/numba/cuda/cudadrv/runtime.py +20 -8
  31. numba_cuda/numba/cuda/cudaimpl.py +317 -233
  32. numba_cuda/numba/cuda/cudamath.py +1 -1
  33. numba_cuda/numba/cuda/debuginfo.py +8 -6
  34. numba_cuda/numba/cuda/decorators.py +75 -45
  35. numba_cuda/numba/cuda/descriptor.py +1 -1
  36. numba_cuda/numba/cuda/device_init.py +69 -18
  37. numba_cuda/numba/cuda/deviceufunc.py +143 -98
  38. numba_cuda/numba/cuda/dispatcher.py +300 -213
  39. numba_cuda/numba/cuda/errors.py +13 -10
  40. numba_cuda/numba/cuda/extending.py +1 -1
  41. numba_cuda/numba/cuda/initialize.py +5 -3
  42. numba_cuda/numba/cuda/intrinsic_wrapper.py +3 -3
  43. numba_cuda/numba/cuda/intrinsics.py +31 -27
  44. numba_cuda/numba/cuda/kernels/reduction.py +13 -13
  45. numba_cuda/numba/cuda/kernels/transpose.py +3 -6
  46. numba_cuda/numba/cuda/libdevice.py +317 -317
  47. numba_cuda/numba/cuda/libdeviceimpl.py +3 -2
  48. numba_cuda/numba/cuda/locks.py +16 -0
  49. numba_cuda/numba/cuda/mathimpl.py +62 -57
  50. numba_cuda/numba/cuda/models.py +1 -5
  51. numba_cuda/numba/cuda/nvvmutils.py +103 -88
  52. numba_cuda/numba/cuda/printimpl.py +9 -5
  53. numba_cuda/numba/cuda/random.py +46 -36
  54. numba_cuda/numba/cuda/reshape_funcs.cu +1 -1
  55. numba_cuda/numba/cuda/runtime/__init__.py +1 -1
  56. numba_cuda/numba/cuda/runtime/memsys.cu +1 -1
  57. numba_cuda/numba/cuda/runtime/memsys.cuh +1 -1
  58. numba_cuda/numba/cuda/runtime/nrt.cu +3 -3
  59. numba_cuda/numba/cuda/runtime/nrt.py +48 -43
  60. numba_cuda/numba/cuda/simulator/__init__.py +22 -12
  61. numba_cuda/numba/cuda/simulator/api.py +38 -22
  62. numba_cuda/numba/cuda/simulator/compiler.py +2 -2
  63. numba_cuda/numba/cuda/simulator/cudadrv/__init__.py +8 -2
  64. numba_cuda/numba/cuda/simulator/cudadrv/devicearray.py +63 -55
  65. numba_cuda/numba/cuda/simulator/cudadrv/devices.py +13 -11
  66. numba_cuda/numba/cuda/simulator/cudadrv/driver.py +5 -5
  67. numba_cuda/numba/cuda/simulator/cudadrv/drvapi.py +2 -2
  68. numba_cuda/numba/cuda/simulator/cudadrv/libs.py +1 -1
  69. numba_cuda/numba/cuda/simulator/cudadrv/nvvm.py +3 -3
  70. numba_cuda/numba/cuda/simulator/cudadrv/runtime.py +3 -3
  71. numba_cuda/numba/cuda/simulator/kernel.py +43 -34
  72. numba_cuda/numba/cuda/simulator/kernelapi.py +31 -26
  73. numba_cuda/numba/cuda/simulator/reduction.py +1 -0
  74. numba_cuda/numba/cuda/simulator/vector_types.py +13 -9
  75. numba_cuda/numba/cuda/simulator_init.py +2 -4
  76. numba_cuda/numba/cuda/stubs.py +139 -102
  77. numba_cuda/numba/cuda/target.py +64 -47
  78. numba_cuda/numba/cuda/testing.py +24 -19
  79. numba_cuda/numba/cuda/tests/__init__.py +14 -12
  80. numba_cuda/numba/cuda/tests/cudadrv/test_array_attr.py +16 -17
  81. numba_cuda/numba/cuda/tests/cudadrv/test_context_stack.py +7 -7
  82. numba_cuda/numba/cuda/tests/cudadrv/test_cuda_array_slicing.py +73 -54
  83. numba_cuda/numba/cuda/tests/cudadrv/test_cuda_auto_context.py +1 -1
  84. numba_cuda/numba/cuda/tests/cudadrv/test_cuda_devicerecord.py +48 -50
  85. numba_cuda/numba/cuda/tests/cudadrv/test_cuda_driver.py +47 -29
  86. numba_cuda/numba/cuda/tests/cudadrv/test_cuda_libraries.py +3 -3
  87. numba_cuda/numba/cuda/tests/cudadrv/test_cuda_memory.py +19 -19
  88. numba_cuda/numba/cuda/tests/cudadrv/test_cuda_ndarray.py +108 -103
  89. numba_cuda/numba/cuda/tests/cudadrv/test_deallocations.py +20 -11
  90. numba_cuda/numba/cuda/tests/cudadrv/test_detect.py +20 -17
  91. numba_cuda/numba/cuda/tests/cudadrv/test_emm_plugins.py +8 -6
  92. numba_cuda/numba/cuda/tests/cudadrv/test_events.py +1 -1
  93. numba_cuda/numba/cuda/tests/cudadrv/test_host_alloc.py +8 -7
  94. numba_cuda/numba/cuda/tests/cudadrv/test_init.py +13 -13
  95. numba_cuda/numba/cuda/tests/cudadrv/test_inline_ptx.py +12 -9
  96. numba_cuda/numba/cuda/tests/cudadrv/test_linker.py +36 -31
  97. numba_cuda/numba/cuda/tests/cudadrv/test_managed_alloc.py +8 -7
  98. numba_cuda/numba/cuda/tests/cudadrv/test_module_callbacks.py +294 -0
  99. numba_cuda/numba/cuda/tests/cudadrv/test_mvc.py +10 -7
  100. numba_cuda/numba/cuda/tests/cudadrv/test_nvjitlink.py +24 -15
  101. numba_cuda/numba/cuda/tests/cudadrv/test_nvvm_driver.py +43 -41
  102. numba_cuda/numba/cuda/tests/cudadrv/test_pinned.py +4 -5
  103. numba_cuda/numba/cuda/tests/cudadrv/test_profiler.py +2 -2
  104. numba_cuda/numba/cuda/tests/cudadrv/test_ptds.py +28 -17
  105. numba_cuda/numba/cuda/tests/cudadrv/test_reset_device.py +1 -2
  106. numba_cuda/numba/cuda/tests/cudadrv/test_runtime.py +22 -14
  107. numba_cuda/numba/cuda/tests/cudadrv/test_select_device.py +1 -1
  108. numba_cuda/numba/cuda/tests/cudadrv/test_streams.py +4 -3
  109. numba_cuda/numba/cuda/tests/cudapy/cache_usecases.py +10 -4
  110. numba_cuda/numba/cuda/tests/cudapy/cache_with_cpu_usecases.py +1 -0
  111. numba_cuda/numba/cuda/tests/cudapy/extensions_usecases.py +7 -6
  112. numba_cuda/numba/cuda/tests/cudapy/jitlink.ptx +0 -2
  113. numba_cuda/numba/cuda/tests/cudapy/recursion_usecases.py +1 -0
  114. numba_cuda/numba/cuda/tests/cudapy/test_alignment.py +6 -5
  115. numba_cuda/numba/cuda/tests/cudapy/test_array.py +52 -42
  116. numba_cuda/numba/cuda/tests/cudapy/test_array_args.py +5 -6
  117. numba_cuda/numba/cuda/tests/cudapy/test_array_methods.py +1 -1
  118. numba_cuda/numba/cuda/tests/cudapy/test_atomics.py +501 -304
  119. numba_cuda/numba/cuda/tests/cudapy/test_blackscholes.py +57 -21
  120. numba_cuda/numba/cuda/tests/cudapy/test_boolean.py +3 -3
  121. numba_cuda/numba/cuda/tests/cudapy/test_caching.py +50 -37
  122. numba_cuda/numba/cuda/tests/cudapy/test_casting.py +29 -24
  123. numba_cuda/numba/cuda/tests/cudapy/test_cffi.py +11 -6
  124. numba_cuda/numba/cuda/tests/cudapy/test_compiler.py +84 -50
  125. numba_cuda/numba/cuda/tests/cudapy/test_complex.py +144 -73
  126. numba_cuda/numba/cuda/tests/cudapy/test_complex_kernel.py +2 -2
  127. numba_cuda/numba/cuda/tests/cudapy/test_const_string.py +37 -27
  128. numba_cuda/numba/cuda/tests/cudapy/test_constmem.py +43 -45
  129. numba_cuda/numba/cuda/tests/cudapy/test_cooperative_groups.py +21 -14
  130. numba_cuda/numba/cuda/tests/cudapy/test_cuda_array_interface.py +60 -55
  131. numba_cuda/numba/cuda/tests/cudapy/test_cuda_jit_no_types.py +3 -2
  132. numba_cuda/numba/cuda/tests/cudapy/test_datetime.py +26 -22
  133. numba_cuda/numba/cuda/tests/cudapy/test_debug.py +29 -27
  134. numba_cuda/numba/cuda/tests/cudapy/test_debuginfo.py +31 -28
  135. numba_cuda/numba/cuda/tests/cudapy/test_device_func.py +52 -45
  136. numba_cuda/numba/cuda/tests/cudapy/test_dispatcher.py +55 -43
  137. numba_cuda/numba/cuda/tests/cudapy/test_enums.py +6 -7
  138. numba_cuda/numba/cuda/tests/cudapy/test_errors.py +30 -15
  139. numba_cuda/numba/cuda/tests/cudapy/test_exception.py +11 -12
  140. numba_cuda/numba/cuda/tests/cudapy/test_extending.py +19 -12
  141. numba_cuda/numba/cuda/tests/cudapy/test_fastmath.py +77 -66
  142. numba_cuda/numba/cuda/tests/cudapy/test_forall.py +5 -3
  143. numba_cuda/numba/cuda/tests/cudapy/test_freevar.py +5 -3
  144. numba_cuda/numba/cuda/tests/cudapy/test_frexp_ldexp.py +1 -1
  145. numba_cuda/numba/cuda/tests/cudapy/test_globals.py +3 -5
  146. numba_cuda/numba/cuda/tests/cudapy/test_gufunc.py +144 -126
  147. numba_cuda/numba/cuda/tests/cudapy/test_gufunc_scalar.py +23 -18
  148. numba_cuda/numba/cuda/tests/cudapy/test_gufunc_scheduling.py +16 -22
  149. numba_cuda/numba/cuda/tests/cudapy/test_idiv.py +1 -3
  150. numba_cuda/numba/cuda/tests/cudapy/test_inspect.py +29 -20
  151. numba_cuda/numba/cuda/tests/cudapy/test_intrinsics.py +147 -99
  152. numba_cuda/numba/cuda/tests/cudapy/test_ipc.py +50 -36
  153. numba_cuda/numba/cuda/tests/cudapy/test_iterators.py +1 -2
  154. numba_cuda/numba/cuda/tests/cudapy/test_lang.py +4 -4
  155. numba_cuda/numba/cuda/tests/cudapy/test_laplace.py +6 -6
  156. numba_cuda/numba/cuda/tests/cudapy/test_libdevice.py +24 -20
  157. numba_cuda/numba/cuda/tests/cudapy/test_lineinfo.py +36 -31
  158. numba_cuda/numba/cuda/tests/cudapy/test_localmem.py +13 -13
  159. numba_cuda/numba/cuda/tests/cudapy/test_mandel.py +13 -6
  160. numba_cuda/numba/cuda/tests/cudapy/test_math.py +83 -66
  161. numba_cuda/numba/cuda/tests/cudapy/test_matmul.py +1 -3
  162. numba_cuda/numba/cuda/tests/cudapy/test_minmax.py +19 -58
  163. numba_cuda/numba/cuda/tests/cudapy/test_montecarlo.py +4 -4
  164. numba_cuda/numba/cuda/tests/cudapy/test_multigpu.py +9 -7
  165. numba_cuda/numba/cuda/tests/cudapy/test_multiprocessing.py +9 -8
  166. numba_cuda/numba/cuda/tests/cudapy/test_multithreads.py +12 -10
  167. numba_cuda/numba/cuda/tests/cudapy/test_nondet.py +1 -1
  168. numba_cuda/numba/cuda/tests/cudapy/test_operator.py +180 -96
  169. numba_cuda/numba/cuda/tests/cudapy/test_optimization.py +5 -5
  170. numba_cuda/numba/cuda/tests/cudapy/test_overload.py +37 -18
  171. numba_cuda/numba/cuda/tests/cudapy/test_powi.py +7 -7
  172. numba_cuda/numba/cuda/tests/cudapy/test_print.py +9 -7
  173. numba_cuda/numba/cuda/tests/cudapy/test_py2_div_issue.py +1 -1
  174. numba_cuda/numba/cuda/tests/cudapy/test_random.py +15 -10
  175. numba_cuda/numba/cuda/tests/cudapy/test_record_dtype.py +88 -87
  176. numba_cuda/numba/cuda/tests/cudapy/test_recursion.py +12 -10
  177. numba_cuda/numba/cuda/tests/cudapy/test_reduction.py +26 -11
  178. numba_cuda/numba/cuda/tests/cudapy/test_retrieve_autoconverted_arrays.py +7 -10
  179. numba_cuda/numba/cuda/tests/cudapy/test_serialize.py +4 -6
  180. numba_cuda/numba/cuda/tests/cudapy/test_slicing.py +1 -1
  181. numba_cuda/numba/cuda/tests/cudapy/test_sm.py +10 -9
  182. numba_cuda/numba/cuda/tests/cudapy/test_sm_creation.py +62 -43
  183. numba_cuda/numba/cuda/tests/cudapy/test_stream_api.py +7 -3
  184. numba_cuda/numba/cuda/tests/cudapy/test_sync.py +7 -5
  185. numba_cuda/numba/cuda/tests/cudapy/test_transpose.py +18 -11
  186. numba_cuda/numba/cuda/tests/cudapy/test_ufuncs.py +111 -88
  187. numba_cuda/numba/cuda/tests/cudapy/test_userexc.py +2 -3
  188. numba_cuda/numba/cuda/tests/cudapy/test_vector_type.py +305 -130
  189. numba_cuda/numba/cuda/tests/cudapy/test_vectorize.py +33 -36
  190. numba_cuda/numba/cuda/tests/cudapy/test_vectorize_complex.py +5 -5
  191. numba_cuda/numba/cuda/tests/cudapy/test_vectorize_decor.py +16 -12
  192. numba_cuda/numba/cuda/tests/cudapy/test_vectorize_device.py +7 -7
  193. numba_cuda/numba/cuda/tests/cudapy/test_vectorize_scalar_arg.py +6 -7
  194. numba_cuda/numba/cuda/tests/cudapy/test_warning.py +31 -29
  195. numba_cuda/numba/cuda/tests/cudapy/test_warp_ops.py +31 -25
  196. numba_cuda/numba/cuda/tests/cudasim/test_cudasim_issues.py +19 -13
  197. numba_cuda/numba/cuda/tests/data/jitlink.cu +1 -1
  198. numba_cuda/numba/cuda/tests/data/jitlink.ptx +0 -2
  199. numba_cuda/numba/cuda/tests/doc_examples/test_cg.py +15 -8
  200. numba_cuda/numba/cuda/tests/doc_examples/test_cpu_gpu_compat.py +4 -7
  201. numba_cuda/numba/cuda/tests/doc_examples/test_ffi.py +14 -9
  202. numba_cuda/numba/cuda/tests/doc_examples/test_laplace.py +22 -18
  203. numba_cuda/numba/cuda/tests/doc_examples/test_matmul.py +7 -4
  204. numba_cuda/numba/cuda/tests/doc_examples/test_montecarlo.py +2 -0
  205. numba_cuda/numba/cuda/tests/doc_examples/test_random.py +8 -4
  206. numba_cuda/numba/cuda/tests/doc_examples/test_reduction.py +2 -1
  207. numba_cuda/numba/cuda/tests/doc_examples/test_sessionize.py +94 -19
  208. numba_cuda/numba/cuda/tests/doc_examples/test_vecadd.py +2 -2
  209. numba_cuda/numba/cuda/tests/nocuda/test_dummyarray.py +91 -62
  210. numba_cuda/numba/cuda/tests/nocuda/test_function_resolution.py +14 -5
  211. numba_cuda/numba/cuda/tests/nocuda/test_import.py +25 -25
  212. numba_cuda/numba/cuda/tests/nocuda/test_library_lookup.py +40 -40
  213. numba_cuda/numba/cuda/tests/nocuda/test_nvvm.py +12 -10
  214. numba_cuda/numba/cuda/tests/nrt/test_nrt.py +16 -20
  215. numba_cuda/numba/cuda/tests/nrt/test_nrt_refct.py +12 -10
  216. numba_cuda/numba/cuda/tests/test_binary_generation/generate_raw_ltoir.py +2 -2
  217. numba_cuda/numba/cuda/types.py +5 -2
  218. numba_cuda/numba/cuda/ufuncs.py +382 -362
  219. numba_cuda/numba/cuda/utils.py +2 -2
  220. numba_cuda/numba/cuda/vector_types.py +2 -2
  221. numba_cuda/numba/cuda/vectorizers.py +37 -32
  222. {numba_cuda-0.8.0.dist-info → numba_cuda-0.9.0.dist-info}/METADATA +1 -1
  223. numba_cuda-0.9.0.dist-info/RECORD +253 -0
  224. {numba_cuda-0.8.0.dist-info → numba_cuda-0.9.0.dist-info}/WHEEL +1 -1
  225. numba_cuda-0.8.0.dist-info/RECORD +0 -251
  226. {numba_cuda-0.8.0.dist-info → numba_cuda-0.9.0.dist-info}/licenses/LICENSE +0 -0
  227. {numba_cuda-0.8.0.dist-info → numba_cuda-0.9.0.dist-info}/top_level.txt +0 -0
@@ -5,7 +5,7 @@ def abs(x):
5
5
  :param x: Argument.
6
6
  :type x: int32
7
7
  :rtype: int32
8
- """
8
+ """
9
9
 
10
10
 
11
11
  def acos(x):
@@ -15,7 +15,7 @@ def acos(x):
15
15
  :param x: Argument.
16
16
  :type x: float64
17
17
  :rtype: float64
18
- """
18
+ """
19
19
 
20
20
 
21
21
  def acosf(x):
@@ -25,7 +25,7 @@ def acosf(x):
25
25
  :param x: Argument.
26
26
  :type x: float32
27
27
  :rtype: float32
28
- """
28
+ """
29
29
 
30
30
 
31
31
  def acosh(x):
@@ -35,7 +35,7 @@ def acosh(x):
35
35
  :param x: Argument.
36
36
  :type x: float64
37
37
  :rtype: float64
38
- """
38
+ """
39
39
 
40
40
 
41
41
  def acoshf(x):
@@ -45,7 +45,7 @@ def acoshf(x):
45
45
  :param x: Argument.
46
46
  :type x: float32
47
47
  :rtype: float32
48
- """
48
+ """
49
49
 
50
50
 
51
51
  def asin(x):
@@ -55,7 +55,7 @@ def asin(x):
55
55
  :param x: Argument.
56
56
  :type x: float64
57
57
  :rtype: float64
58
- """
58
+ """
59
59
 
60
60
 
61
61
  def asinf(x):
@@ -65,7 +65,7 @@ def asinf(x):
65
65
  :param x: Argument.
66
66
  :type x: float32
67
67
  :rtype: float32
68
- """
68
+ """
69
69
 
70
70
 
71
71
  def asinh(x):
@@ -75,7 +75,7 @@ def asinh(x):
75
75
  :param x: Argument.
76
76
  :type x: float64
77
77
  :rtype: float64
78
- """
78
+ """
79
79
 
80
80
 
81
81
  def asinhf(x):
@@ -85,7 +85,7 @@ def asinhf(x):
85
85
  :param x: Argument.
86
86
  :type x: float32
87
87
  :rtype: float32
88
- """
88
+ """
89
89
 
90
90
 
91
91
  def atan(x):
@@ -95,7 +95,7 @@ def atan(x):
95
95
  :param x: Argument.
96
96
  :type x: float64
97
97
  :rtype: float64
98
- """
98
+ """
99
99
 
100
100
 
101
101
  def atan2(x, y):
@@ -107,7 +107,7 @@ def atan2(x, y):
107
107
  :param y: Argument.
108
108
  :type y: float64
109
109
  :rtype: float64
110
- """
110
+ """
111
111
 
112
112
 
113
113
  def atan2f(x, y):
@@ -119,7 +119,7 @@ def atan2f(x, y):
119
119
  :param y: Argument.
120
120
  :type y: float32
121
121
  :rtype: float32
122
- """
122
+ """
123
123
 
124
124
 
125
125
  def atanf(x):
@@ -129,7 +129,7 @@ def atanf(x):
129
129
  :param x: Argument.
130
130
  :type x: float32
131
131
  :rtype: float32
132
- """
132
+ """
133
133
 
134
134
 
135
135
  def atanh(x):
@@ -139,7 +139,7 @@ def atanh(x):
139
139
  :param x: Argument.
140
140
  :type x: float64
141
141
  :rtype: float64
142
- """
142
+ """
143
143
 
144
144
 
145
145
  def atanhf(x):
@@ -149,7 +149,7 @@ def atanhf(x):
149
149
  :param x: Argument.
150
150
  :type x: float32
151
151
  :rtype: float32
152
- """
152
+ """
153
153
 
154
154
 
155
155
  def brev(x):
@@ -159,7 +159,7 @@ def brev(x):
159
159
  :param x: Argument.
160
160
  :type x: int32
161
161
  :rtype: int32
162
- """
162
+ """
163
163
 
164
164
 
165
165
  def brevll(x):
@@ -169,7 +169,7 @@ def brevll(x):
169
169
  :param x: Argument.
170
170
  :type x: int64
171
171
  :rtype: int64
172
- """
172
+ """
173
173
 
174
174
 
175
175
  def byte_perm(x, y, z):
@@ -183,7 +183,7 @@ def byte_perm(x, y, z):
183
183
  :param z: Argument.
184
184
  :type z: int32
185
185
  :rtype: int32
186
- """
186
+ """
187
187
 
188
188
 
189
189
  def cbrt(x):
@@ -193,7 +193,7 @@ def cbrt(x):
193
193
  :param x: Argument.
194
194
  :type x: float64
195
195
  :rtype: float64
196
- """
196
+ """
197
197
 
198
198
 
199
199
  def cbrtf(x):
@@ -203,7 +203,7 @@ def cbrtf(x):
203
203
  :param x: Argument.
204
204
  :type x: float32
205
205
  :rtype: float32
206
- """
206
+ """
207
207
 
208
208
 
209
209
  def ceil(x):
@@ -213,7 +213,7 @@ def ceil(x):
213
213
  :param x: Argument.
214
214
  :type x: float64
215
215
  :rtype: float64
216
- """
216
+ """
217
217
 
218
218
 
219
219
  def ceilf(x):
@@ -223,7 +223,7 @@ def ceilf(x):
223
223
  :param x: Argument.
224
224
  :type x: float32
225
225
  :rtype: float32
226
- """
226
+ """
227
227
 
228
228
 
229
229
  def clz(x):
@@ -233,7 +233,7 @@ def clz(x):
233
233
  :param x: Argument.
234
234
  :type x: int32
235
235
  :rtype: int32
236
- """
236
+ """
237
237
 
238
238
 
239
239
  def clzll(x):
@@ -243,7 +243,7 @@ def clzll(x):
243
243
  :param x: Argument.
244
244
  :type x: int64
245
245
  :rtype: int32
246
- """
246
+ """
247
247
 
248
248
 
249
249
  def copysign(x, y):
@@ -255,7 +255,7 @@ def copysign(x, y):
255
255
  :param y: Argument.
256
256
  :type y: float64
257
257
  :rtype: float64
258
- """
258
+ """
259
259
 
260
260
 
261
261
  def copysignf(x, y):
@@ -267,7 +267,7 @@ def copysignf(x, y):
267
267
  :param y: Argument.
268
268
  :type y: float32
269
269
  :rtype: float32
270
- """
270
+ """
271
271
 
272
272
 
273
273
  def cos(x):
@@ -277,7 +277,7 @@ def cos(x):
277
277
  :param x: Argument.
278
278
  :type x: float64
279
279
  :rtype: float64
280
- """
280
+ """
281
281
 
282
282
 
283
283
  def cosf(x):
@@ -287,7 +287,7 @@ def cosf(x):
287
287
  :param x: Argument.
288
288
  :type x: float32
289
289
  :rtype: float32
290
- """
290
+ """
291
291
 
292
292
 
293
293
  def cosh(x):
@@ -297,7 +297,7 @@ def cosh(x):
297
297
  :param x: Argument.
298
298
  :type x: float64
299
299
  :rtype: float64
300
- """
300
+ """
301
301
 
302
302
 
303
303
  def coshf(x):
@@ -307,7 +307,7 @@ def coshf(x):
307
307
  :param x: Argument.
308
308
  :type x: float32
309
309
  :rtype: float32
310
- """
310
+ """
311
311
 
312
312
 
313
313
  def cospi(x):
@@ -317,7 +317,7 @@ def cospi(x):
317
317
  :param x: Argument.
318
318
  :type x: float64
319
319
  :rtype: float64
320
- """
320
+ """
321
321
 
322
322
 
323
323
  def cospif(x):
@@ -327,7 +327,7 @@ def cospif(x):
327
327
  :param x: Argument.
328
328
  :type x: float32
329
329
  :rtype: float32
330
- """
330
+ """
331
331
 
332
332
 
333
333
  def dadd_rd(x, y):
@@ -339,7 +339,7 @@ def dadd_rd(x, y):
339
339
  :param y: Argument.
340
340
  :type y: float64
341
341
  :rtype: float64
342
- """
342
+ """
343
343
 
344
344
 
345
345
  def dadd_rn(x, y):
@@ -351,7 +351,7 @@ def dadd_rn(x, y):
351
351
  :param y: Argument.
352
352
  :type y: float64
353
353
  :rtype: float64
354
- """
354
+ """
355
355
 
356
356
 
357
357
  def dadd_ru(x, y):
@@ -363,7 +363,7 @@ def dadd_ru(x, y):
363
363
  :param y: Argument.
364
364
  :type y: float64
365
365
  :rtype: float64
366
- """
366
+ """
367
367
 
368
368
 
369
369
  def dadd_rz(x, y):
@@ -375,7 +375,7 @@ def dadd_rz(x, y):
375
375
  :param y: Argument.
376
376
  :type y: float64
377
377
  :rtype: float64
378
- """
378
+ """
379
379
 
380
380
 
381
381
  def ddiv_rd(x, y):
@@ -387,7 +387,7 @@ def ddiv_rd(x, y):
387
387
  :param y: Argument.
388
388
  :type y: float64
389
389
  :rtype: float64
390
- """
390
+ """
391
391
 
392
392
 
393
393
  def ddiv_rn(x, y):
@@ -399,7 +399,7 @@ def ddiv_rn(x, y):
399
399
  :param y: Argument.
400
400
  :type y: float64
401
401
  :rtype: float64
402
- """
402
+ """
403
403
 
404
404
 
405
405
  def ddiv_ru(x, y):
@@ -411,7 +411,7 @@ def ddiv_ru(x, y):
411
411
  :param y: Argument.
412
412
  :type y: float64
413
413
  :rtype: float64
414
- """
414
+ """
415
415
 
416
416
 
417
417
  def ddiv_rz(x, y):
@@ -423,7 +423,7 @@ def ddiv_rz(x, y):
423
423
  :param y: Argument.
424
424
  :type y: float64
425
425
  :rtype: float64
426
- """
426
+ """
427
427
 
428
428
 
429
429
  def dmul_rd(x, y):
@@ -435,7 +435,7 @@ def dmul_rd(x, y):
435
435
  :param y: Argument.
436
436
  :type y: float64
437
437
  :rtype: float64
438
- """
438
+ """
439
439
 
440
440
 
441
441
  def dmul_rn(x, y):
@@ -447,7 +447,7 @@ def dmul_rn(x, y):
447
447
  :param y: Argument.
448
448
  :type y: float64
449
449
  :rtype: float64
450
- """
450
+ """
451
451
 
452
452
 
453
453
  def dmul_ru(x, y):
@@ -459,7 +459,7 @@ def dmul_ru(x, y):
459
459
  :param y: Argument.
460
460
  :type y: float64
461
461
  :rtype: float64
462
- """
462
+ """
463
463
 
464
464
 
465
465
  def dmul_rz(x, y):
@@ -471,7 +471,7 @@ def dmul_rz(x, y):
471
471
  :param y: Argument.
472
472
  :type y: float64
473
473
  :rtype: float64
474
- """
474
+ """
475
475
 
476
476
 
477
477
  def double2float_rd(d):
@@ -481,7 +481,7 @@ def double2float_rd(d):
481
481
  :param d: Argument.
482
482
  :type d: float64
483
483
  :rtype: float32
484
- """
484
+ """
485
485
 
486
486
 
487
487
  def double2float_rn(d):
@@ -491,7 +491,7 @@ def double2float_rn(d):
491
491
  :param d: Argument.
492
492
  :type d: float64
493
493
  :rtype: float32
494
- """
494
+ """
495
495
 
496
496
 
497
497
  def double2float_ru(d):
@@ -501,7 +501,7 @@ def double2float_ru(d):
501
501
  :param d: Argument.
502
502
  :type d: float64
503
503
  :rtype: float32
504
- """
504
+ """
505
505
 
506
506
 
507
507
  def double2float_rz(d):
@@ -511,7 +511,7 @@ def double2float_rz(d):
511
511
  :param d: Argument.
512
512
  :type d: float64
513
513
  :rtype: float32
514
- """
514
+ """
515
515
 
516
516
 
517
517
  def double2hiint(d):
@@ -521,7 +521,7 @@ def double2hiint(d):
521
521
  :param d: Argument.
522
522
  :type d: float64
523
523
  :rtype: int32
524
- """
524
+ """
525
525
 
526
526
 
527
527
  def double2int_rd(d):
@@ -531,7 +531,7 @@ def double2int_rd(d):
531
531
  :param d: Argument.
532
532
  :type d: float64
533
533
  :rtype: int32
534
- """
534
+ """
535
535
 
536
536
 
537
537
  def double2int_rn(d):
@@ -541,7 +541,7 @@ def double2int_rn(d):
541
541
  :param d: Argument.
542
542
  :type d: float64
543
543
  :rtype: int32
544
- """
544
+ """
545
545
 
546
546
 
547
547
  def double2int_ru(d):
@@ -551,7 +551,7 @@ def double2int_ru(d):
551
551
  :param d: Argument.
552
552
  :type d: float64
553
553
  :rtype: int32
554
- """
554
+ """
555
555
 
556
556
 
557
557
  def double2int_rz(d):
@@ -561,7 +561,7 @@ def double2int_rz(d):
561
561
  :param d: Argument.
562
562
  :type d: float64
563
563
  :rtype: int32
564
- """
564
+ """
565
565
 
566
566
 
567
567
  def double2ll_rd(f):
@@ -571,7 +571,7 @@ def double2ll_rd(f):
571
571
  :param f: Argument.
572
572
  :type f: float64
573
573
  :rtype: int64
574
- """
574
+ """
575
575
 
576
576
 
577
577
  def double2ll_rn(f):
@@ -581,7 +581,7 @@ def double2ll_rn(f):
581
581
  :param f: Argument.
582
582
  :type f: float64
583
583
  :rtype: int64
584
- """
584
+ """
585
585
 
586
586
 
587
587
  def double2ll_ru(f):
@@ -591,7 +591,7 @@ def double2ll_ru(f):
591
591
  :param f: Argument.
592
592
  :type f: float64
593
593
  :rtype: int64
594
- """
594
+ """
595
595
 
596
596
 
597
597
  def double2ll_rz(f):
@@ -601,7 +601,7 @@ def double2ll_rz(f):
601
601
  :param f: Argument.
602
602
  :type f: float64
603
603
  :rtype: int64
604
- """
604
+ """
605
605
 
606
606
 
607
607
  def double2loint(d):
@@ -611,7 +611,7 @@ def double2loint(d):
611
611
  :param d: Argument.
612
612
  :type d: float64
613
613
  :rtype: int32
614
- """
614
+ """
615
615
 
616
616
 
617
617
  def double2uint_rd(d):
@@ -621,7 +621,7 @@ def double2uint_rd(d):
621
621
  :param d: Argument.
622
622
  :type d: float64
623
623
  :rtype: int32
624
- """
624
+ """
625
625
 
626
626
 
627
627
  def double2uint_rn(d):
@@ -631,7 +631,7 @@ def double2uint_rn(d):
631
631
  :param d: Argument.
632
632
  :type d: float64
633
633
  :rtype: int32
634
- """
634
+ """
635
635
 
636
636
 
637
637
  def double2uint_ru(d):
@@ -641,7 +641,7 @@ def double2uint_ru(d):
641
641
  :param d: Argument.
642
642
  :type d: float64
643
643
  :rtype: int32
644
- """
644
+ """
645
645
 
646
646
 
647
647
  def double2uint_rz(d):
@@ -651,7 +651,7 @@ def double2uint_rz(d):
651
651
  :param d: Argument.
652
652
  :type d: float64
653
653
  :rtype: int32
654
- """
654
+ """
655
655
 
656
656
 
657
657
  def double2ull_rd(f):
@@ -661,7 +661,7 @@ def double2ull_rd(f):
661
661
  :param f: Argument.
662
662
  :type f: float64
663
663
  :rtype: int64
664
- """
664
+ """
665
665
 
666
666
 
667
667
  def double2ull_rn(f):
@@ -671,7 +671,7 @@ def double2ull_rn(f):
671
671
  :param f: Argument.
672
672
  :type f: float64
673
673
  :rtype: int64
674
- """
674
+ """
675
675
 
676
676
 
677
677
  def double2ull_ru(f):
@@ -681,7 +681,7 @@ def double2ull_ru(f):
681
681
  :param f: Argument.
682
682
  :type f: float64
683
683
  :rtype: int64
684
- """
684
+ """
685
685
 
686
686
 
687
687
  def double2ull_rz(f):
@@ -691,7 +691,7 @@ def double2ull_rz(f):
691
691
  :param f: Argument.
692
692
  :type f: float64
693
693
  :rtype: int64
694
- """
694
+ """
695
695
 
696
696
 
697
697
  def double_as_longlong(x):
@@ -701,7 +701,7 @@ def double_as_longlong(x):
701
701
  :param x: Argument.
702
702
  :type x: float64
703
703
  :rtype: int64
704
- """
704
+ """
705
705
 
706
706
 
707
707
  def drcp_rd(x):
@@ -711,7 +711,7 @@ def drcp_rd(x):
711
711
  :param x: Argument.
712
712
  :type x: float64
713
713
  :rtype: float64
714
- """
714
+ """
715
715
 
716
716
 
717
717
  def drcp_rn(x):
@@ -721,7 +721,7 @@ def drcp_rn(x):
721
721
  :param x: Argument.
722
722
  :type x: float64
723
723
  :rtype: float64
724
- """
724
+ """
725
725
 
726
726
 
727
727
  def drcp_ru(x):
@@ -731,7 +731,7 @@ def drcp_ru(x):
731
731
  :param x: Argument.
732
732
  :type x: float64
733
733
  :rtype: float64
734
- """
734
+ """
735
735
 
736
736
 
737
737
  def drcp_rz(x):
@@ -741,7 +741,7 @@ def drcp_rz(x):
741
741
  :param x: Argument.
742
742
  :type x: float64
743
743
  :rtype: float64
744
- """
744
+ """
745
745
 
746
746
 
747
747
  def dsqrt_rd(x):
@@ -751,7 +751,7 @@ def dsqrt_rd(x):
751
751
  :param x: Argument.
752
752
  :type x: float64
753
753
  :rtype: float64
754
- """
754
+ """
755
755
 
756
756
 
757
757
  def dsqrt_rn(x):
@@ -761,7 +761,7 @@ def dsqrt_rn(x):
761
761
  :param x: Argument.
762
762
  :type x: float64
763
763
  :rtype: float64
764
- """
764
+ """
765
765
 
766
766
 
767
767
  def dsqrt_ru(x):
@@ -771,7 +771,7 @@ def dsqrt_ru(x):
771
771
  :param x: Argument.
772
772
  :type x: float64
773
773
  :rtype: float64
774
- """
774
+ """
775
775
 
776
776
 
777
777
  def dsqrt_rz(x):
@@ -781,7 +781,7 @@ def dsqrt_rz(x):
781
781
  :param x: Argument.
782
782
  :type x: float64
783
783
  :rtype: float64
784
- """
784
+ """
785
785
 
786
786
 
787
787
  def erf(x):
@@ -791,7 +791,7 @@ def erf(x):
791
791
  :param x: Argument.
792
792
  :type x: float64
793
793
  :rtype: float64
794
- """
794
+ """
795
795
 
796
796
 
797
797
  def erfc(x):
@@ -801,7 +801,7 @@ def erfc(x):
801
801
  :param x: Argument.
802
802
  :type x: float64
803
803
  :rtype: float64
804
- """
804
+ """
805
805
 
806
806
 
807
807
  def erfcf(x):
@@ -811,7 +811,7 @@ def erfcf(x):
811
811
  :param x: Argument.
812
812
  :type x: float32
813
813
  :rtype: float32
814
- """
814
+ """
815
815
 
816
816
 
817
817
  def erfcinv(x):
@@ -821,7 +821,7 @@ def erfcinv(x):
821
821
  :param x: Argument.
822
822
  :type x: float64
823
823
  :rtype: float64
824
- """
824
+ """
825
825
 
826
826
 
827
827
  def erfcinvf(x):
@@ -831,7 +831,7 @@ def erfcinvf(x):
831
831
  :param x: Argument.
832
832
  :type x: float32
833
833
  :rtype: float32
834
- """
834
+ """
835
835
 
836
836
 
837
837
  def erfcx(x):
@@ -841,7 +841,7 @@ def erfcx(x):
841
841
  :param x: Argument.
842
842
  :type x: float64
843
843
  :rtype: float64
844
- """
844
+ """
845
845
 
846
846
 
847
847
  def erfcxf(x):
@@ -851,7 +851,7 @@ def erfcxf(x):
851
851
  :param x: Argument.
852
852
  :type x: float32
853
853
  :rtype: float32
854
- """
854
+ """
855
855
 
856
856
 
857
857
  def erff(x):
@@ -861,7 +861,7 @@ def erff(x):
861
861
  :param x: Argument.
862
862
  :type x: float32
863
863
  :rtype: float32
864
- """
864
+ """
865
865
 
866
866
 
867
867
  def erfinv(x):
@@ -871,7 +871,7 @@ def erfinv(x):
871
871
  :param x: Argument.
872
872
  :type x: float64
873
873
  :rtype: float64
874
- """
874
+ """
875
875
 
876
876
 
877
877
  def erfinvf(x):
@@ -881,7 +881,7 @@ def erfinvf(x):
881
881
  :param x: Argument.
882
882
  :type x: float32
883
883
  :rtype: float32
884
- """
884
+ """
885
885
 
886
886
 
887
887
  def exp(x):
@@ -891,7 +891,7 @@ def exp(x):
891
891
  :param x: Argument.
892
892
  :type x: float64
893
893
  :rtype: float64
894
- """
894
+ """
895
895
 
896
896
 
897
897
  def exp10(x):
@@ -901,7 +901,7 @@ def exp10(x):
901
901
  :param x: Argument.
902
902
  :type x: float64
903
903
  :rtype: float64
904
- """
904
+ """
905
905
 
906
906
 
907
907
  def exp10f(x):
@@ -911,7 +911,7 @@ def exp10f(x):
911
911
  :param x: Argument.
912
912
  :type x: float32
913
913
  :rtype: float32
914
- """
914
+ """
915
915
 
916
916
 
917
917
  def exp2(x):
@@ -921,7 +921,7 @@ def exp2(x):
921
921
  :param x: Argument.
922
922
  :type x: float64
923
923
  :rtype: float64
924
- """
924
+ """
925
925
 
926
926
 
927
927
  def exp2f(x):
@@ -931,7 +931,7 @@ def exp2f(x):
931
931
  :param x: Argument.
932
932
  :type x: float32
933
933
  :rtype: float32
934
- """
934
+ """
935
935
 
936
936
 
937
937
  def expf(x):
@@ -941,7 +941,7 @@ def expf(x):
941
941
  :param x: Argument.
942
942
  :type x: float32
943
943
  :rtype: float32
944
- """
944
+ """
945
945
 
946
946
 
947
947
  def expm1(x):
@@ -951,7 +951,7 @@ def expm1(x):
951
951
  :param x: Argument.
952
952
  :type x: float64
953
953
  :rtype: float64
954
- """
954
+ """
955
955
 
956
956
 
957
957
  def expm1f(x):
@@ -961,7 +961,7 @@ def expm1f(x):
961
961
  :param x: Argument.
962
962
  :type x: float32
963
963
  :rtype: float32
964
- """
964
+ """
965
965
 
966
966
 
967
967
  def fabs(f):
@@ -971,7 +971,7 @@ def fabs(f):
971
971
  :param f: Argument.
972
972
  :type f: float64
973
973
  :rtype: float64
974
- """
974
+ """
975
975
 
976
976
 
977
977
  def fabsf(f):
@@ -981,7 +981,7 @@ def fabsf(f):
981
981
  :param f: Argument.
982
982
  :type f: float32
983
983
  :rtype: float32
984
- """
984
+ """
985
985
 
986
986
 
987
987
  def fadd_rd(x, y):
@@ -993,7 +993,7 @@ def fadd_rd(x, y):
993
993
  :param y: Argument.
994
994
  :type y: float32
995
995
  :rtype: float32
996
- """
996
+ """
997
997
 
998
998
 
999
999
  def fadd_rn(x, y):
@@ -1005,7 +1005,7 @@ def fadd_rn(x, y):
1005
1005
  :param y: Argument.
1006
1006
  :type y: float32
1007
1007
  :rtype: float32
1008
- """
1008
+ """
1009
1009
 
1010
1010
 
1011
1011
  def fadd_ru(x, y):
@@ -1017,7 +1017,7 @@ def fadd_ru(x, y):
1017
1017
  :param y: Argument.
1018
1018
  :type y: float32
1019
1019
  :rtype: float32
1020
- """
1020
+ """
1021
1021
 
1022
1022
 
1023
1023
  def fadd_rz(x, y):
@@ -1029,7 +1029,7 @@ def fadd_rz(x, y):
1029
1029
  :param y: Argument.
1030
1030
  :type y: float32
1031
1031
  :rtype: float32
1032
- """
1032
+ """
1033
1033
 
1034
1034
 
1035
1035
  def fast_cosf(x):
@@ -1039,7 +1039,7 @@ def fast_cosf(x):
1039
1039
  :param x: Argument.
1040
1040
  :type x: float32
1041
1041
  :rtype: float32
1042
- """
1042
+ """
1043
1043
 
1044
1044
 
1045
1045
  def fast_exp10f(x):
@@ -1049,7 +1049,7 @@ def fast_exp10f(x):
1049
1049
  :param x: Argument.
1050
1050
  :type x: float32
1051
1051
  :rtype: float32
1052
- """
1052
+ """
1053
1053
 
1054
1054
 
1055
1055
  def fast_expf(x):
@@ -1059,7 +1059,7 @@ def fast_expf(x):
1059
1059
  :param x: Argument.
1060
1060
  :type x: float32
1061
1061
  :rtype: float32
1062
- """
1062
+ """
1063
1063
 
1064
1064
 
1065
1065
  def fast_fdividef(x, y):
@@ -1071,7 +1071,7 @@ def fast_fdividef(x, y):
1071
1071
  :param y: Argument.
1072
1072
  :type y: float32
1073
1073
  :rtype: float32
1074
- """
1074
+ """
1075
1075
 
1076
1076
 
1077
1077
  def fast_log10f(x):
@@ -1081,7 +1081,7 @@ def fast_log10f(x):
1081
1081
  :param x: Argument.
1082
1082
  :type x: float32
1083
1083
  :rtype: float32
1084
- """
1084
+ """
1085
1085
 
1086
1086
 
1087
1087
  def fast_log2f(x):
@@ -1091,7 +1091,7 @@ def fast_log2f(x):
1091
1091
  :param x: Argument.
1092
1092
  :type x: float32
1093
1093
  :rtype: float32
1094
- """
1094
+ """
1095
1095
 
1096
1096
 
1097
1097
  def fast_logf(x):
@@ -1101,7 +1101,7 @@ def fast_logf(x):
1101
1101
  :param x: Argument.
1102
1102
  :type x: float32
1103
1103
  :rtype: float32
1104
- """
1104
+ """
1105
1105
 
1106
1106
 
1107
1107
  def fast_powf(x, y):
@@ -1113,7 +1113,7 @@ def fast_powf(x, y):
1113
1113
  :param y: Argument.
1114
1114
  :type y: float32
1115
1115
  :rtype: float32
1116
- """
1116
+ """
1117
1117
 
1118
1118
 
1119
1119
  def fast_sincosf(x):
@@ -1123,7 +1123,7 @@ def fast_sincosf(x):
1123
1123
  :param x: Argument.
1124
1124
  :type x: float32
1125
1125
  :rtype: UniTuple(float32 x 2)
1126
- """
1126
+ """
1127
1127
 
1128
1128
 
1129
1129
  def fast_sinf(x):
@@ -1133,7 +1133,7 @@ def fast_sinf(x):
1133
1133
  :param x: Argument.
1134
1134
  :type x: float32
1135
1135
  :rtype: float32
1136
- """
1136
+ """
1137
1137
 
1138
1138
 
1139
1139
  def fast_tanf(x):
@@ -1143,7 +1143,7 @@ def fast_tanf(x):
1143
1143
  :param x: Argument.
1144
1144
  :type x: float32
1145
1145
  :rtype: float32
1146
- """
1146
+ """
1147
1147
 
1148
1148
 
1149
1149
  def fdim(x, y):
@@ -1155,7 +1155,7 @@ def fdim(x, y):
1155
1155
  :param y: Argument.
1156
1156
  :type y: float64
1157
1157
  :rtype: float64
1158
- """
1158
+ """
1159
1159
 
1160
1160
 
1161
1161
  def fdimf(x, y):
@@ -1167,7 +1167,7 @@ def fdimf(x, y):
1167
1167
  :param y: Argument.
1168
1168
  :type y: float32
1169
1169
  :rtype: float32
1170
- """
1170
+ """
1171
1171
 
1172
1172
 
1173
1173
  def fdiv_rd(x, y):
@@ -1179,7 +1179,7 @@ def fdiv_rd(x, y):
1179
1179
  :param y: Argument.
1180
1180
  :type y: float32
1181
1181
  :rtype: float32
1182
- """
1182
+ """
1183
1183
 
1184
1184
 
1185
1185
  def fdiv_rn(x, y):
@@ -1191,7 +1191,7 @@ def fdiv_rn(x, y):
1191
1191
  :param y: Argument.
1192
1192
  :type y: float32
1193
1193
  :rtype: float32
1194
- """
1194
+ """
1195
1195
 
1196
1196
 
1197
1197
  def fdiv_ru(x, y):
@@ -1203,7 +1203,7 @@ def fdiv_ru(x, y):
1203
1203
  :param y: Argument.
1204
1204
  :type y: float32
1205
1205
  :rtype: float32
1206
- """
1206
+ """
1207
1207
 
1208
1208
 
1209
1209
  def fdiv_rz(x, y):
@@ -1215,7 +1215,7 @@ def fdiv_rz(x, y):
1215
1215
  :param y: Argument.
1216
1216
  :type y: float32
1217
1217
  :rtype: float32
1218
- """
1218
+ """
1219
1219
 
1220
1220
 
1221
1221
  def ffs(x):
@@ -1225,7 +1225,7 @@ def ffs(x):
1225
1225
  :param x: Argument.
1226
1226
  :type x: int32
1227
1227
  :rtype: int32
1228
- """
1228
+ """
1229
1229
 
1230
1230
 
1231
1231
  def ffsll(x):
@@ -1235,7 +1235,7 @@ def ffsll(x):
1235
1235
  :param x: Argument.
1236
1236
  :type x: int64
1237
1237
  :rtype: int32
1238
- """
1238
+ """
1239
1239
 
1240
1240
 
1241
1241
  def finitef(x):
@@ -1245,7 +1245,7 @@ def finitef(x):
1245
1245
  :param x: Argument.
1246
1246
  :type x: float32
1247
1247
  :rtype: int32
1248
- """
1248
+ """
1249
1249
 
1250
1250
 
1251
1251
  def float2half_rn(f):
@@ -1255,7 +1255,7 @@ def float2half_rn(f):
1255
1255
  :param f: Argument.
1256
1256
  :type f: float32
1257
1257
  :rtype: int16
1258
- """
1258
+ """
1259
1259
 
1260
1260
 
1261
1261
  def float2int_rd(x):
@@ -1265,7 +1265,7 @@ def float2int_rd(x):
1265
1265
  :param in: Argument.
1266
1266
  :type in: float32
1267
1267
  :rtype: int32
1268
- """
1268
+ """
1269
1269
 
1270
1270
 
1271
1271
  def float2int_rn(x):
@@ -1275,7 +1275,7 @@ def float2int_rn(x):
1275
1275
  :param in: Argument.
1276
1276
  :type in: float32
1277
1277
  :rtype: int32
1278
- """
1278
+ """
1279
1279
 
1280
1280
 
1281
1281
  def float2int_ru(x):
@@ -1285,7 +1285,7 @@ def float2int_ru(x):
1285
1285
  :param in: Argument.
1286
1286
  :type in: float32
1287
1287
  :rtype: int32
1288
- """
1288
+ """
1289
1289
 
1290
1290
 
1291
1291
  def float2int_rz(x):
@@ -1295,7 +1295,7 @@ def float2int_rz(x):
1295
1295
  :param in: Argument.
1296
1296
  :type in: float32
1297
1297
  :rtype: int32
1298
- """
1298
+ """
1299
1299
 
1300
1300
 
1301
1301
  def float2ll_rd(f):
@@ -1305,7 +1305,7 @@ def float2ll_rd(f):
1305
1305
  :param f: Argument.
1306
1306
  :type f: float32
1307
1307
  :rtype: int64
1308
- """
1308
+ """
1309
1309
 
1310
1310
 
1311
1311
  def float2ll_rn(f):
@@ -1315,7 +1315,7 @@ def float2ll_rn(f):
1315
1315
  :param f: Argument.
1316
1316
  :type f: float32
1317
1317
  :rtype: int64
1318
- """
1318
+ """
1319
1319
 
1320
1320
 
1321
1321
  def float2ll_ru(f):
@@ -1325,7 +1325,7 @@ def float2ll_ru(f):
1325
1325
  :param f: Argument.
1326
1326
  :type f: float32
1327
1327
  :rtype: int64
1328
- """
1328
+ """
1329
1329
 
1330
1330
 
1331
1331
  def float2ll_rz(f):
@@ -1335,7 +1335,7 @@ def float2ll_rz(f):
1335
1335
  :param f: Argument.
1336
1336
  :type f: float32
1337
1337
  :rtype: int64
1338
- """
1338
+ """
1339
1339
 
1340
1340
 
1341
1341
  def float2uint_rd(x):
@@ -1345,7 +1345,7 @@ def float2uint_rd(x):
1345
1345
  :param in: Argument.
1346
1346
  :type in: float32
1347
1347
  :rtype: int32
1348
- """
1348
+ """
1349
1349
 
1350
1350
 
1351
1351
  def float2uint_rn(x):
@@ -1355,7 +1355,7 @@ def float2uint_rn(x):
1355
1355
  :param in: Argument.
1356
1356
  :type in: float32
1357
1357
  :rtype: int32
1358
- """
1358
+ """
1359
1359
 
1360
1360
 
1361
1361
  def float2uint_ru(x):
@@ -1365,7 +1365,7 @@ def float2uint_ru(x):
1365
1365
  :param in: Argument.
1366
1366
  :type in: float32
1367
1367
  :rtype: int32
1368
- """
1368
+ """
1369
1369
 
1370
1370
 
1371
1371
  def float2uint_rz(x):
@@ -1375,7 +1375,7 @@ def float2uint_rz(x):
1375
1375
  :param in: Argument.
1376
1376
  :type in: float32
1377
1377
  :rtype: int32
1378
- """
1378
+ """
1379
1379
 
1380
1380
 
1381
1381
  def float2ull_rd(f):
@@ -1385,7 +1385,7 @@ def float2ull_rd(f):
1385
1385
  :param f: Argument.
1386
1386
  :type f: float32
1387
1387
  :rtype: int64
1388
- """
1388
+ """
1389
1389
 
1390
1390
 
1391
1391
  def float2ull_rn(f):
@@ -1395,7 +1395,7 @@ def float2ull_rn(f):
1395
1395
  :param f: Argument.
1396
1396
  :type f: float32
1397
1397
  :rtype: int64
1398
- """
1398
+ """
1399
1399
 
1400
1400
 
1401
1401
  def float2ull_ru(f):
@@ -1405,7 +1405,7 @@ def float2ull_ru(f):
1405
1405
  :param f: Argument.
1406
1406
  :type f: float32
1407
1407
  :rtype: int64
1408
- """
1408
+ """
1409
1409
 
1410
1410
 
1411
1411
  def float2ull_rz(f):
@@ -1415,7 +1415,7 @@ def float2ull_rz(f):
1415
1415
  :param f: Argument.
1416
1416
  :type f: float32
1417
1417
  :rtype: int64
1418
- """
1418
+ """
1419
1419
 
1420
1420
 
1421
1421
  def float_as_int(x):
@@ -1425,7 +1425,7 @@ def float_as_int(x):
1425
1425
  :param x: Argument.
1426
1426
  :type x: float32
1427
1427
  :rtype: int32
1428
- """
1428
+ """
1429
1429
 
1430
1430
 
1431
1431
  def floor(f):
@@ -1435,7 +1435,7 @@ def floor(f):
1435
1435
  :param f: Argument.
1436
1436
  :type f: float64
1437
1437
  :rtype: float64
1438
- """
1438
+ """
1439
1439
 
1440
1440
 
1441
1441
  def floorf(f):
@@ -1445,7 +1445,7 @@ def floorf(f):
1445
1445
  :param f: Argument.
1446
1446
  :type f: float32
1447
1447
  :rtype: float32
1448
- """
1448
+ """
1449
1449
 
1450
1450
 
1451
1451
  def fma(x, y, z):
@@ -1459,7 +1459,7 @@ def fma(x, y, z):
1459
1459
  :param z: Argument.
1460
1460
  :type z: float64
1461
1461
  :rtype: float64
1462
- """
1462
+ """
1463
1463
 
1464
1464
 
1465
1465
  def fma_rd(x, y, z):
@@ -1473,7 +1473,7 @@ def fma_rd(x, y, z):
1473
1473
  :param z: Argument.
1474
1474
  :type z: float64
1475
1475
  :rtype: float64
1476
- """
1476
+ """
1477
1477
 
1478
1478
 
1479
1479
  def fma_rn(x, y, z):
@@ -1487,7 +1487,7 @@ def fma_rn(x, y, z):
1487
1487
  :param z: Argument.
1488
1488
  :type z: float64
1489
1489
  :rtype: float64
1490
- """
1490
+ """
1491
1491
 
1492
1492
 
1493
1493
  def fma_ru(x, y, z):
@@ -1501,7 +1501,7 @@ def fma_ru(x, y, z):
1501
1501
  :param z: Argument.
1502
1502
  :type z: float64
1503
1503
  :rtype: float64
1504
- """
1504
+ """
1505
1505
 
1506
1506
 
1507
1507
  def fma_rz(x, y, z):
@@ -1515,7 +1515,7 @@ def fma_rz(x, y, z):
1515
1515
  :param z: Argument.
1516
1516
  :type z: float64
1517
1517
  :rtype: float64
1518
- """
1518
+ """
1519
1519
 
1520
1520
 
1521
1521
  def fmaf(x, y, z):
@@ -1529,7 +1529,7 @@ def fmaf(x, y, z):
1529
1529
  :param z: Argument.
1530
1530
  :type z: float32
1531
1531
  :rtype: float32
1532
- """
1532
+ """
1533
1533
 
1534
1534
 
1535
1535
  def fmaf_rd(x, y, z):
@@ -1543,7 +1543,7 @@ def fmaf_rd(x, y, z):
1543
1543
  :param z: Argument.
1544
1544
  :type z: float32
1545
1545
  :rtype: float32
1546
- """
1546
+ """
1547
1547
 
1548
1548
 
1549
1549
  def fmaf_rn(x, y, z):
@@ -1557,7 +1557,7 @@ def fmaf_rn(x, y, z):
1557
1557
  :param z: Argument.
1558
1558
  :type z: float32
1559
1559
  :rtype: float32
1560
- """
1560
+ """
1561
1561
 
1562
1562
 
1563
1563
  def fmaf_ru(x, y, z):
@@ -1571,7 +1571,7 @@ def fmaf_ru(x, y, z):
1571
1571
  :param z: Argument.
1572
1572
  :type z: float32
1573
1573
  :rtype: float32
1574
- """
1574
+ """
1575
1575
 
1576
1576
 
1577
1577
  def fmaf_rz(x, y, z):
@@ -1585,7 +1585,7 @@ def fmaf_rz(x, y, z):
1585
1585
  :param z: Argument.
1586
1586
  :type z: float32
1587
1587
  :rtype: float32
1588
- """
1588
+ """
1589
1589
 
1590
1590
 
1591
1591
  def fmax(x, y):
@@ -1597,7 +1597,7 @@ def fmax(x, y):
1597
1597
  :param y: Argument.
1598
1598
  :type y: float64
1599
1599
  :rtype: float64
1600
- """
1600
+ """
1601
1601
 
1602
1602
 
1603
1603
  def fmaxf(x, y):
@@ -1609,7 +1609,7 @@ def fmaxf(x, y):
1609
1609
  :param y: Argument.
1610
1610
  :type y: float32
1611
1611
  :rtype: float32
1612
- """
1612
+ """
1613
1613
 
1614
1614
 
1615
1615
  def fmin(x, y):
@@ -1621,7 +1621,7 @@ def fmin(x, y):
1621
1621
  :param y: Argument.
1622
1622
  :type y: float64
1623
1623
  :rtype: float64
1624
- """
1624
+ """
1625
1625
 
1626
1626
 
1627
1627
  def fminf(x, y):
@@ -1633,7 +1633,7 @@ def fminf(x, y):
1633
1633
  :param y: Argument.
1634
1634
  :type y: float32
1635
1635
  :rtype: float32
1636
- """
1636
+ """
1637
1637
 
1638
1638
 
1639
1639
  def fmod(x, y):
@@ -1645,7 +1645,7 @@ def fmod(x, y):
1645
1645
  :param y: Argument.
1646
1646
  :type y: float64
1647
1647
  :rtype: float64
1648
- """
1648
+ """
1649
1649
 
1650
1650
 
1651
1651
  def fmodf(x, y):
@@ -1657,7 +1657,7 @@ def fmodf(x, y):
1657
1657
  :param y: Argument.
1658
1658
  :type y: float32
1659
1659
  :rtype: float32
1660
- """
1660
+ """
1661
1661
 
1662
1662
 
1663
1663
  def fmul_rd(x, y):
@@ -1669,7 +1669,7 @@ def fmul_rd(x, y):
1669
1669
  :param y: Argument.
1670
1670
  :type y: float32
1671
1671
  :rtype: float32
1672
- """
1672
+ """
1673
1673
 
1674
1674
 
1675
1675
  def fmul_rn(x, y):
@@ -1681,7 +1681,7 @@ def fmul_rn(x, y):
1681
1681
  :param y: Argument.
1682
1682
  :type y: float32
1683
1683
  :rtype: float32
1684
- """
1684
+ """
1685
1685
 
1686
1686
 
1687
1687
  def fmul_ru(x, y):
@@ -1693,7 +1693,7 @@ def fmul_ru(x, y):
1693
1693
  :param y: Argument.
1694
1694
  :type y: float32
1695
1695
  :rtype: float32
1696
- """
1696
+ """
1697
1697
 
1698
1698
 
1699
1699
  def fmul_rz(x, y):
@@ -1705,7 +1705,7 @@ def fmul_rz(x, y):
1705
1705
  :param y: Argument.
1706
1706
  :type y: float32
1707
1707
  :rtype: float32
1708
- """
1708
+ """
1709
1709
 
1710
1710
 
1711
1711
  def frcp_rd(x):
@@ -1715,7 +1715,7 @@ def frcp_rd(x):
1715
1715
  :param x: Argument.
1716
1716
  :type x: float32
1717
1717
  :rtype: float32
1718
- """
1718
+ """
1719
1719
 
1720
1720
 
1721
1721
  def frcp_rn(x):
@@ -1725,7 +1725,7 @@ def frcp_rn(x):
1725
1725
  :param x: Argument.
1726
1726
  :type x: float32
1727
1727
  :rtype: float32
1728
- """
1728
+ """
1729
1729
 
1730
1730
 
1731
1731
  def frcp_ru(x):
@@ -1735,7 +1735,7 @@ def frcp_ru(x):
1735
1735
  :param x: Argument.
1736
1736
  :type x: float32
1737
1737
  :rtype: float32
1738
- """
1738
+ """
1739
1739
 
1740
1740
 
1741
1741
  def frcp_rz(x):
@@ -1745,7 +1745,7 @@ def frcp_rz(x):
1745
1745
  :param x: Argument.
1746
1746
  :type x: float32
1747
1747
  :rtype: float32
1748
- """
1748
+ """
1749
1749
 
1750
1750
 
1751
1751
  def frexp(x):
@@ -1755,7 +1755,7 @@ def frexp(x):
1755
1755
  :param x: Argument.
1756
1756
  :type x: float64
1757
1757
  :rtype: Tuple(float64, int32)
1758
- """
1758
+ """
1759
1759
 
1760
1760
 
1761
1761
  def frexpf(x):
@@ -1765,7 +1765,7 @@ def frexpf(x):
1765
1765
  :param x: Argument.
1766
1766
  :type x: float32
1767
1767
  :rtype: Tuple(float32, int32)
1768
- """
1768
+ """
1769
1769
 
1770
1770
 
1771
1771
  def frsqrt_rn(x):
@@ -1775,7 +1775,7 @@ def frsqrt_rn(x):
1775
1775
  :param x: Argument.
1776
1776
  :type x: float32
1777
1777
  :rtype: float32
1778
- """
1778
+ """
1779
1779
 
1780
1780
 
1781
1781
  def fsqrt_rd(x):
@@ -1785,7 +1785,7 @@ def fsqrt_rd(x):
1785
1785
  :param x: Argument.
1786
1786
  :type x: float32
1787
1787
  :rtype: float32
1788
- """
1788
+ """
1789
1789
 
1790
1790
 
1791
1791
  def fsqrt_rn(x):
@@ -1795,7 +1795,7 @@ def fsqrt_rn(x):
1795
1795
  :param x: Argument.
1796
1796
  :type x: float32
1797
1797
  :rtype: float32
1798
- """
1798
+ """
1799
1799
 
1800
1800
 
1801
1801
  def fsqrt_ru(x):
@@ -1805,7 +1805,7 @@ def fsqrt_ru(x):
1805
1805
  :param x: Argument.
1806
1806
  :type x: float32
1807
1807
  :rtype: float32
1808
- """
1808
+ """
1809
1809
 
1810
1810
 
1811
1811
  def fsqrt_rz(x):
@@ -1815,7 +1815,7 @@ def fsqrt_rz(x):
1815
1815
  :param x: Argument.
1816
1816
  :type x: float32
1817
1817
  :rtype: float32
1818
- """
1818
+ """
1819
1819
 
1820
1820
 
1821
1821
  def fsub_rd(x, y):
@@ -1827,7 +1827,7 @@ def fsub_rd(x, y):
1827
1827
  :param y: Argument.
1828
1828
  :type y: float32
1829
1829
  :rtype: float32
1830
- """
1830
+ """
1831
1831
 
1832
1832
 
1833
1833
  def fsub_rn(x, y):
@@ -1839,7 +1839,7 @@ def fsub_rn(x, y):
1839
1839
  :param y: Argument.
1840
1840
  :type y: float32
1841
1841
  :rtype: float32
1842
- """
1842
+ """
1843
1843
 
1844
1844
 
1845
1845
  def fsub_ru(x, y):
@@ -1851,7 +1851,7 @@ def fsub_ru(x, y):
1851
1851
  :param y: Argument.
1852
1852
  :type y: float32
1853
1853
  :rtype: float32
1854
- """
1854
+ """
1855
1855
 
1856
1856
 
1857
1857
  def fsub_rz(x, y):
@@ -1863,7 +1863,7 @@ def fsub_rz(x, y):
1863
1863
  :param y: Argument.
1864
1864
  :type y: float32
1865
1865
  :rtype: float32
1866
- """
1866
+ """
1867
1867
 
1868
1868
 
1869
1869
  def hadd(x, y):
@@ -1875,7 +1875,7 @@ def hadd(x, y):
1875
1875
  :param y: Argument.
1876
1876
  :type y: int32
1877
1877
  :rtype: int32
1878
- """
1878
+ """
1879
1879
 
1880
1880
 
1881
1881
  def half2float(h):
@@ -1885,7 +1885,7 @@ def half2float(h):
1885
1885
  :param h: Argument.
1886
1886
  :type h: int16
1887
1887
  :rtype: float32
1888
- """
1888
+ """
1889
1889
 
1890
1890
 
1891
1891
  def hiloint2double(x, y):
@@ -1897,7 +1897,7 @@ def hiloint2double(x, y):
1897
1897
  :param y: Argument.
1898
1898
  :type y: int32
1899
1899
  :rtype: float64
1900
- """
1900
+ """
1901
1901
 
1902
1902
 
1903
1903
  def hypot(x, y):
@@ -1909,7 +1909,7 @@ def hypot(x, y):
1909
1909
  :param y: Argument.
1910
1910
  :type y: float64
1911
1911
  :rtype: float64
1912
- """
1912
+ """
1913
1913
 
1914
1914
 
1915
1915
  def hypotf(x, y):
@@ -1921,7 +1921,7 @@ def hypotf(x, y):
1921
1921
  :param y: Argument.
1922
1922
  :type y: float32
1923
1923
  :rtype: float32
1924
- """
1924
+ """
1925
1925
 
1926
1926
 
1927
1927
  def ilogb(x):
@@ -1931,7 +1931,7 @@ def ilogb(x):
1931
1931
  :param x: Argument.
1932
1932
  :type x: float64
1933
1933
  :rtype: int32
1934
- """
1934
+ """
1935
1935
 
1936
1936
 
1937
1937
  def ilogbf(x):
@@ -1941,7 +1941,7 @@ def ilogbf(x):
1941
1941
  :param x: Argument.
1942
1942
  :type x: float32
1943
1943
  :rtype: int32
1944
- """
1944
+ """
1945
1945
 
1946
1946
 
1947
1947
  def int2double_rn(i):
@@ -1951,7 +1951,7 @@ def int2double_rn(i):
1951
1951
  :param i: Argument.
1952
1952
  :type i: int32
1953
1953
  :rtype: float64
1954
- """
1954
+ """
1955
1955
 
1956
1956
 
1957
1957
  def int2float_rd(x):
@@ -1961,7 +1961,7 @@ def int2float_rd(x):
1961
1961
  :param in: Argument.
1962
1962
  :type in: int32
1963
1963
  :rtype: float32
1964
- """
1964
+ """
1965
1965
 
1966
1966
 
1967
1967
  def int2float_rn(x):
@@ -1971,7 +1971,7 @@ def int2float_rn(x):
1971
1971
  :param in: Argument.
1972
1972
  :type in: int32
1973
1973
  :rtype: float32
1974
- """
1974
+ """
1975
1975
 
1976
1976
 
1977
1977
  def int2float_ru(x):
@@ -1981,7 +1981,7 @@ def int2float_ru(x):
1981
1981
  :param in: Argument.
1982
1982
  :type in: int32
1983
1983
  :rtype: float32
1984
- """
1984
+ """
1985
1985
 
1986
1986
 
1987
1987
  def int2float_rz(x):
@@ -1991,7 +1991,7 @@ def int2float_rz(x):
1991
1991
  :param in: Argument.
1992
1992
  :type in: int32
1993
1993
  :rtype: float32
1994
- """
1994
+ """
1995
1995
 
1996
1996
 
1997
1997
  def int_as_float(x):
@@ -2001,7 +2001,7 @@ def int_as_float(x):
2001
2001
  :param x: Argument.
2002
2002
  :type x: int32
2003
2003
  :rtype: float32
2004
- """
2004
+ """
2005
2005
 
2006
2006
 
2007
2007
  def isfinited(x):
@@ -2011,7 +2011,7 @@ def isfinited(x):
2011
2011
  :param x: Argument.
2012
2012
  :type x: float64
2013
2013
  :rtype: int32
2014
- """
2014
+ """
2015
2015
 
2016
2016
 
2017
2017
  def isinfd(x):
@@ -2021,7 +2021,7 @@ def isinfd(x):
2021
2021
  :param x: Argument.
2022
2022
  :type x: float64
2023
2023
  :rtype: int32
2024
- """
2024
+ """
2025
2025
 
2026
2026
 
2027
2027
  def isinff(x):
@@ -2031,7 +2031,7 @@ def isinff(x):
2031
2031
  :param x: Argument.
2032
2032
  :type x: float32
2033
2033
  :rtype: int32
2034
- """
2034
+ """
2035
2035
 
2036
2036
 
2037
2037
  def isnand(x):
@@ -2041,7 +2041,7 @@ def isnand(x):
2041
2041
  :param x: Argument.
2042
2042
  :type x: float64
2043
2043
  :rtype: int32
2044
- """
2044
+ """
2045
2045
 
2046
2046
 
2047
2047
  def isnanf(x):
@@ -2051,7 +2051,7 @@ def isnanf(x):
2051
2051
  :param x: Argument.
2052
2052
  :type x: float32
2053
2053
  :rtype: int32
2054
- """
2054
+ """
2055
2055
 
2056
2056
 
2057
2057
  def j0(x):
@@ -2061,7 +2061,7 @@ def j0(x):
2061
2061
  :param x: Argument.
2062
2062
  :type x: float64
2063
2063
  :rtype: float64
2064
- """
2064
+ """
2065
2065
 
2066
2066
 
2067
2067
  def j0f(x):
@@ -2071,7 +2071,7 @@ def j0f(x):
2071
2071
  :param x: Argument.
2072
2072
  :type x: float32
2073
2073
  :rtype: float32
2074
- """
2074
+ """
2075
2075
 
2076
2076
 
2077
2077
  def j1(x):
@@ -2081,7 +2081,7 @@ def j1(x):
2081
2081
  :param x: Argument.
2082
2082
  :type x: float64
2083
2083
  :rtype: float64
2084
- """
2084
+ """
2085
2085
 
2086
2086
 
2087
2087
  def j1f(x):
@@ -2091,7 +2091,7 @@ def j1f(x):
2091
2091
  :param x: Argument.
2092
2092
  :type x: float32
2093
2093
  :rtype: float32
2094
- """
2094
+ """
2095
2095
 
2096
2096
 
2097
2097
  def jn(n, x):
@@ -2103,7 +2103,7 @@ def jn(n, x):
2103
2103
  :param x: Argument.
2104
2104
  :type x: float64
2105
2105
  :rtype: float64
2106
- """
2106
+ """
2107
2107
 
2108
2108
 
2109
2109
  def jnf(n, x):
@@ -2115,7 +2115,7 @@ def jnf(n, x):
2115
2115
  :param x: Argument.
2116
2116
  :type x: float32
2117
2117
  :rtype: float32
2118
- """
2118
+ """
2119
2119
 
2120
2120
 
2121
2121
  def ldexp(x, y):
@@ -2127,7 +2127,7 @@ def ldexp(x, y):
2127
2127
  :param y: Argument.
2128
2128
  :type y: int32
2129
2129
  :rtype: float64
2130
- """
2130
+ """
2131
2131
 
2132
2132
 
2133
2133
  def ldexpf(x, y):
@@ -2139,7 +2139,7 @@ def ldexpf(x, y):
2139
2139
  :param y: Argument.
2140
2140
  :type y: int32
2141
2141
  :rtype: float32
2142
- """
2142
+ """
2143
2143
 
2144
2144
 
2145
2145
  def lgamma(x):
@@ -2149,7 +2149,7 @@ def lgamma(x):
2149
2149
  :param x: Argument.
2150
2150
  :type x: float64
2151
2151
  :rtype: float64
2152
- """
2152
+ """
2153
2153
 
2154
2154
 
2155
2155
  def lgammaf(x):
@@ -2159,7 +2159,7 @@ def lgammaf(x):
2159
2159
  :param x: Argument.
2160
2160
  :type x: float32
2161
2161
  :rtype: float32
2162
- """
2162
+ """
2163
2163
 
2164
2164
 
2165
2165
  def ll2double_rd(l):
@@ -2169,7 +2169,7 @@ def ll2double_rd(l):
2169
2169
  :param l: Argument.
2170
2170
  :type l: int64
2171
2171
  :rtype: float64
2172
- """
2172
+ """
2173
2173
 
2174
2174
 
2175
2175
  def ll2double_rn(l):
@@ -2179,7 +2179,7 @@ def ll2double_rn(l):
2179
2179
  :param l: Argument.
2180
2180
  :type l: int64
2181
2181
  :rtype: float64
2182
- """
2182
+ """
2183
2183
 
2184
2184
 
2185
2185
  def ll2double_ru(l):
@@ -2189,7 +2189,7 @@ def ll2double_ru(l):
2189
2189
  :param l: Argument.
2190
2190
  :type l: int64
2191
2191
  :rtype: float64
2192
- """
2192
+ """
2193
2193
 
2194
2194
 
2195
2195
  def ll2double_rz(l):
@@ -2199,7 +2199,7 @@ def ll2double_rz(l):
2199
2199
  :param l: Argument.
2200
2200
  :type l: int64
2201
2201
  :rtype: float64
2202
- """
2202
+ """
2203
2203
 
2204
2204
 
2205
2205
  def ll2float_rd(l):
@@ -2209,7 +2209,7 @@ def ll2float_rd(l):
2209
2209
  :param l: Argument.
2210
2210
  :type l: int64
2211
2211
  :rtype: float32
2212
- """
2212
+ """
2213
2213
 
2214
2214
 
2215
2215
  def ll2float_rn(l):
@@ -2219,7 +2219,7 @@ def ll2float_rn(l):
2219
2219
  :param l: Argument.
2220
2220
  :type l: int64
2221
2221
  :rtype: float32
2222
- """
2222
+ """
2223
2223
 
2224
2224
 
2225
2225
  def ll2float_ru(l):
@@ -2229,7 +2229,7 @@ def ll2float_ru(l):
2229
2229
  :param l: Argument.
2230
2230
  :type l: int64
2231
2231
  :rtype: float32
2232
- """
2232
+ """
2233
2233
 
2234
2234
 
2235
2235
  def ll2float_rz(l):
@@ -2239,7 +2239,7 @@ def ll2float_rz(l):
2239
2239
  :param l: Argument.
2240
2240
  :type l: int64
2241
2241
  :rtype: float32
2242
- """
2242
+ """
2243
2243
 
2244
2244
 
2245
2245
  def llabs(x):
@@ -2249,7 +2249,7 @@ def llabs(x):
2249
2249
  :param x: Argument.
2250
2250
  :type x: int64
2251
2251
  :rtype: int64
2252
- """
2252
+ """
2253
2253
 
2254
2254
 
2255
2255
  def llmax(x, y):
@@ -2261,7 +2261,7 @@ def llmax(x, y):
2261
2261
  :param y: Argument.
2262
2262
  :type y: int64
2263
2263
  :rtype: int64
2264
- """
2264
+ """
2265
2265
 
2266
2266
 
2267
2267
  def llmin(x, y):
@@ -2273,7 +2273,7 @@ def llmin(x, y):
2273
2273
  :param y: Argument.
2274
2274
  :type y: int64
2275
2275
  :rtype: int64
2276
- """
2276
+ """
2277
2277
 
2278
2278
 
2279
2279
  def llrint(x):
@@ -2283,7 +2283,7 @@ def llrint(x):
2283
2283
  :param x: Argument.
2284
2284
  :type x: float64
2285
2285
  :rtype: int64
2286
- """
2286
+ """
2287
2287
 
2288
2288
 
2289
2289
  def llrintf(x):
@@ -2293,7 +2293,7 @@ def llrintf(x):
2293
2293
  :param x: Argument.
2294
2294
  :type x: float32
2295
2295
  :rtype: int64
2296
- """
2296
+ """
2297
2297
 
2298
2298
 
2299
2299
  def llround(x):
@@ -2303,7 +2303,7 @@ def llround(x):
2303
2303
  :param x: Argument.
2304
2304
  :type x: float64
2305
2305
  :rtype: int64
2306
- """
2306
+ """
2307
2307
 
2308
2308
 
2309
2309
  def llroundf(x):
@@ -2313,7 +2313,7 @@ def llroundf(x):
2313
2313
  :param x: Argument.
2314
2314
  :type x: float32
2315
2315
  :rtype: int64
2316
- """
2316
+ """
2317
2317
 
2318
2318
 
2319
2319
  def log(x):
@@ -2323,7 +2323,7 @@ def log(x):
2323
2323
  :param x: Argument.
2324
2324
  :type x: float64
2325
2325
  :rtype: float64
2326
- """
2326
+ """
2327
2327
 
2328
2328
 
2329
2329
  def log10(x):
@@ -2333,7 +2333,7 @@ def log10(x):
2333
2333
  :param x: Argument.
2334
2334
  :type x: float64
2335
2335
  :rtype: float64
2336
- """
2336
+ """
2337
2337
 
2338
2338
 
2339
2339
  def log10f(x):
@@ -2343,7 +2343,7 @@ def log10f(x):
2343
2343
  :param x: Argument.
2344
2344
  :type x: float32
2345
2345
  :rtype: float32
2346
- """
2346
+ """
2347
2347
 
2348
2348
 
2349
2349
  def log1p(x):
@@ -2353,7 +2353,7 @@ def log1p(x):
2353
2353
  :param x: Argument.
2354
2354
  :type x: float64
2355
2355
  :rtype: float64
2356
- """
2356
+ """
2357
2357
 
2358
2358
 
2359
2359
  def log1pf(x):
@@ -2363,7 +2363,7 @@ def log1pf(x):
2363
2363
  :param x: Argument.
2364
2364
  :type x: float32
2365
2365
  :rtype: float32
2366
- """
2366
+ """
2367
2367
 
2368
2368
 
2369
2369
  def log2(x):
@@ -2373,7 +2373,7 @@ def log2(x):
2373
2373
  :param x: Argument.
2374
2374
  :type x: float64
2375
2375
  :rtype: float64
2376
- """
2376
+ """
2377
2377
 
2378
2378
 
2379
2379
  def log2f(x):
@@ -2383,7 +2383,7 @@ def log2f(x):
2383
2383
  :param x: Argument.
2384
2384
  :type x: float32
2385
2385
  :rtype: float32
2386
- """
2386
+ """
2387
2387
 
2388
2388
 
2389
2389
  def logb(x):
@@ -2393,7 +2393,7 @@ def logb(x):
2393
2393
  :param x: Argument.
2394
2394
  :type x: float64
2395
2395
  :rtype: float64
2396
- """
2396
+ """
2397
2397
 
2398
2398
 
2399
2399
  def logbf(x):
@@ -2403,7 +2403,7 @@ def logbf(x):
2403
2403
  :param x: Argument.
2404
2404
  :type x: float32
2405
2405
  :rtype: float32
2406
- """
2406
+ """
2407
2407
 
2408
2408
 
2409
2409
  def logf(x):
@@ -2413,7 +2413,7 @@ def logf(x):
2413
2413
  :param x: Argument.
2414
2414
  :type x: float32
2415
2415
  :rtype: float32
2416
- """
2416
+ """
2417
2417
 
2418
2418
 
2419
2419
  def longlong_as_double(x):
@@ -2423,7 +2423,7 @@ def longlong_as_double(x):
2423
2423
  :param x: Argument.
2424
2424
  :type x: int64
2425
2425
  :rtype: float64
2426
- """
2426
+ """
2427
2427
 
2428
2428
 
2429
2429
  def max(x, y):
@@ -2435,7 +2435,7 @@ def max(x, y):
2435
2435
  :param y: Argument.
2436
2436
  :type y: int32
2437
2437
  :rtype: int32
2438
- """
2438
+ """
2439
2439
 
2440
2440
 
2441
2441
  def min(x, y):
@@ -2447,7 +2447,7 @@ def min(x, y):
2447
2447
  :param y: Argument.
2448
2448
  :type y: int32
2449
2449
  :rtype: int32
2450
- """
2450
+ """
2451
2451
 
2452
2452
 
2453
2453
  def modf(x):
@@ -2457,7 +2457,7 @@ def modf(x):
2457
2457
  :param x: Argument.
2458
2458
  :type x: float64
2459
2459
  :rtype: UniTuple(float64 x 2)
2460
- """
2460
+ """
2461
2461
 
2462
2462
 
2463
2463
  def modff(x):
@@ -2467,7 +2467,7 @@ def modff(x):
2467
2467
  :param x: Argument.
2468
2468
  :type x: float32
2469
2469
  :rtype: UniTuple(float32 x 2)
2470
- """
2470
+ """
2471
2471
 
2472
2472
 
2473
2473
  def mul24(x, y):
@@ -2479,7 +2479,7 @@ def mul24(x, y):
2479
2479
  :param y: Argument.
2480
2480
  :type y: int32
2481
2481
  :rtype: int32
2482
- """
2482
+ """
2483
2483
 
2484
2484
 
2485
2485
  def mul64hi(x, y):
@@ -2491,7 +2491,7 @@ def mul64hi(x, y):
2491
2491
  :param y: Argument.
2492
2492
  :type y: int64
2493
2493
  :rtype: int64
2494
- """
2494
+ """
2495
2495
 
2496
2496
 
2497
2497
  def mulhi(x, y):
@@ -2503,7 +2503,7 @@ def mulhi(x, y):
2503
2503
  :param y: Argument.
2504
2504
  :type y: int32
2505
2505
  :rtype: int32
2506
- """
2506
+ """
2507
2507
 
2508
2508
 
2509
2509
  def nearbyint(x):
@@ -2513,7 +2513,7 @@ def nearbyint(x):
2513
2513
  :param x: Argument.
2514
2514
  :type x: float64
2515
2515
  :rtype: float64
2516
- """
2516
+ """
2517
2517
 
2518
2518
 
2519
2519
  def nearbyintf(x):
@@ -2523,7 +2523,7 @@ def nearbyintf(x):
2523
2523
  :param x: Argument.
2524
2524
  :type x: float32
2525
2525
  :rtype: float32
2526
- """
2526
+ """
2527
2527
 
2528
2528
 
2529
2529
  def nextafter(x, y):
@@ -2535,7 +2535,7 @@ def nextafter(x, y):
2535
2535
  :param y: Argument.
2536
2536
  :type y: float64
2537
2537
  :rtype: float64
2538
- """
2538
+ """
2539
2539
 
2540
2540
 
2541
2541
  def nextafterf(x, y):
@@ -2547,7 +2547,7 @@ def nextafterf(x, y):
2547
2547
  :param y: Argument.
2548
2548
  :type y: float32
2549
2549
  :rtype: float32
2550
- """
2550
+ """
2551
2551
 
2552
2552
 
2553
2553
  def normcdf(x):
@@ -2557,7 +2557,7 @@ def normcdf(x):
2557
2557
  :param x: Argument.
2558
2558
  :type x: float64
2559
2559
  :rtype: float64
2560
- """
2560
+ """
2561
2561
 
2562
2562
 
2563
2563
  def normcdff(x):
@@ -2567,7 +2567,7 @@ def normcdff(x):
2567
2567
  :param x: Argument.
2568
2568
  :type x: float32
2569
2569
  :rtype: float32
2570
- """
2570
+ """
2571
2571
 
2572
2572
 
2573
2573
  def normcdfinv(x):
@@ -2577,7 +2577,7 @@ def normcdfinv(x):
2577
2577
  :param x: Argument.
2578
2578
  :type x: float64
2579
2579
  :rtype: float64
2580
- """
2580
+ """
2581
2581
 
2582
2582
 
2583
2583
  def normcdfinvf(x):
@@ -2587,7 +2587,7 @@ def normcdfinvf(x):
2587
2587
  :param x: Argument.
2588
2588
  :type x: float32
2589
2589
  :rtype: float32
2590
- """
2590
+ """
2591
2591
 
2592
2592
 
2593
2593
  def popc(x):
@@ -2597,7 +2597,7 @@ def popc(x):
2597
2597
  :param x: Argument.
2598
2598
  :type x: int32
2599
2599
  :rtype: int32
2600
- """
2600
+ """
2601
2601
 
2602
2602
 
2603
2603
  def popcll(x):
@@ -2607,7 +2607,7 @@ def popcll(x):
2607
2607
  :param x: Argument.
2608
2608
  :type x: int64
2609
2609
  :rtype: int32
2610
- """
2610
+ """
2611
2611
 
2612
2612
 
2613
2613
  def pow(x, y):
@@ -2619,7 +2619,7 @@ def pow(x, y):
2619
2619
  :param y: Argument.
2620
2620
  :type y: float64
2621
2621
  :rtype: float64
2622
- """
2622
+ """
2623
2623
 
2624
2624
 
2625
2625
  def powf(x, y):
@@ -2631,7 +2631,7 @@ def powf(x, y):
2631
2631
  :param y: Argument.
2632
2632
  :type y: float32
2633
2633
  :rtype: float32
2634
- """
2634
+ """
2635
2635
 
2636
2636
 
2637
2637
  def powi(x, y):
@@ -2643,7 +2643,7 @@ def powi(x, y):
2643
2643
  :param y: Argument.
2644
2644
  :type y: int32
2645
2645
  :rtype: float64
2646
- """
2646
+ """
2647
2647
 
2648
2648
 
2649
2649
  def powif(x, y):
@@ -2655,7 +2655,7 @@ def powif(x, y):
2655
2655
  :param y: Argument.
2656
2656
  :type y: int32
2657
2657
  :rtype: float32
2658
- """
2658
+ """
2659
2659
 
2660
2660
 
2661
2661
  def rcbrt(x):
@@ -2665,7 +2665,7 @@ def rcbrt(x):
2665
2665
  :param x: Argument.
2666
2666
  :type x: float64
2667
2667
  :rtype: float64
2668
- """
2668
+ """
2669
2669
 
2670
2670
 
2671
2671
  def rcbrtf(x):
@@ -2675,7 +2675,7 @@ def rcbrtf(x):
2675
2675
  :param x: Argument.
2676
2676
  :type x: float32
2677
2677
  :rtype: float32
2678
- """
2678
+ """
2679
2679
 
2680
2680
 
2681
2681
  def remainder(x, y):
@@ -2687,7 +2687,7 @@ def remainder(x, y):
2687
2687
  :param y: Argument.
2688
2688
  :type y: float64
2689
2689
  :rtype: float64
2690
- """
2690
+ """
2691
2691
 
2692
2692
 
2693
2693
  def remainderf(x, y):
@@ -2699,7 +2699,7 @@ def remainderf(x, y):
2699
2699
  :param y: Argument.
2700
2700
  :type y: float32
2701
2701
  :rtype: float32
2702
- """
2702
+ """
2703
2703
 
2704
2704
 
2705
2705
  def remquo(x, y):
@@ -2711,7 +2711,7 @@ def remquo(x, y):
2711
2711
  :param y: Argument.
2712
2712
  :type y: float64
2713
2713
  :rtype: Tuple(float64, int32)
2714
- """
2714
+ """
2715
2715
 
2716
2716
 
2717
2717
  def remquof(x, y):
@@ -2723,7 +2723,7 @@ def remquof(x, y):
2723
2723
  :param y: Argument.
2724
2724
  :type y: float32
2725
2725
  :rtype: Tuple(float32, int32)
2726
- """
2726
+ """
2727
2727
 
2728
2728
 
2729
2729
  def rhadd(x, y):
@@ -2735,7 +2735,7 @@ def rhadd(x, y):
2735
2735
  :param y: Argument.
2736
2736
  :type y: int32
2737
2737
  :rtype: int32
2738
- """
2738
+ """
2739
2739
 
2740
2740
 
2741
2741
  def rint(x):
@@ -2745,7 +2745,7 @@ def rint(x):
2745
2745
  :param x: Argument.
2746
2746
  :type x: float64
2747
2747
  :rtype: float64
2748
- """
2748
+ """
2749
2749
 
2750
2750
 
2751
2751
  def rintf(x):
@@ -2755,7 +2755,7 @@ def rintf(x):
2755
2755
  :param x: Argument.
2756
2756
  :type x: float32
2757
2757
  :rtype: float32
2758
- """
2758
+ """
2759
2759
 
2760
2760
 
2761
2761
  def round(x):
@@ -2765,7 +2765,7 @@ def round(x):
2765
2765
  :param x: Argument.
2766
2766
  :type x: float64
2767
2767
  :rtype: float64
2768
- """
2768
+ """
2769
2769
 
2770
2770
 
2771
2771
  def roundf(x):
@@ -2775,7 +2775,7 @@ def roundf(x):
2775
2775
  :param x: Argument.
2776
2776
  :type x: float32
2777
2777
  :rtype: float32
2778
- """
2778
+ """
2779
2779
 
2780
2780
 
2781
2781
  def rsqrt(x):
@@ -2785,7 +2785,7 @@ def rsqrt(x):
2785
2785
  :param x: Argument.
2786
2786
  :type x: float64
2787
2787
  :rtype: float64
2788
- """
2788
+ """
2789
2789
 
2790
2790
 
2791
2791
  def rsqrtf(x):
@@ -2795,7 +2795,7 @@ def rsqrtf(x):
2795
2795
  :param x: Argument.
2796
2796
  :type x: float32
2797
2797
  :rtype: float32
2798
- """
2798
+ """
2799
2799
 
2800
2800
 
2801
2801
  def sad(x, y, z):
@@ -2809,7 +2809,7 @@ def sad(x, y, z):
2809
2809
  :param z: Argument.
2810
2810
  :type z: int32
2811
2811
  :rtype: int32
2812
- """
2812
+ """
2813
2813
 
2814
2814
 
2815
2815
  def saturatef(x):
@@ -2819,7 +2819,7 @@ def saturatef(x):
2819
2819
  :param x: Argument.
2820
2820
  :type x: float32
2821
2821
  :rtype: float32
2822
- """
2822
+ """
2823
2823
 
2824
2824
 
2825
2825
  def scalbn(x, y):
@@ -2831,7 +2831,7 @@ def scalbn(x, y):
2831
2831
  :param y: Argument.
2832
2832
  :type y: int32
2833
2833
  :rtype: float64
2834
- """
2834
+ """
2835
2835
 
2836
2836
 
2837
2837
  def scalbnf(x, y):
@@ -2843,7 +2843,7 @@ def scalbnf(x, y):
2843
2843
  :param y: Argument.
2844
2844
  :type y: int32
2845
2845
  :rtype: float32
2846
- """
2846
+ """
2847
2847
 
2848
2848
 
2849
2849
  def signbitd(x):
@@ -2853,7 +2853,7 @@ def signbitd(x):
2853
2853
  :param x: Argument.
2854
2854
  :type x: float64
2855
2855
  :rtype: int32
2856
- """
2856
+ """
2857
2857
 
2858
2858
 
2859
2859
  def signbitf(x):
@@ -2863,7 +2863,7 @@ def signbitf(x):
2863
2863
  :param x: Argument.
2864
2864
  :type x: float32
2865
2865
  :rtype: int32
2866
- """
2866
+ """
2867
2867
 
2868
2868
 
2869
2869
  def sin(x):
@@ -2873,7 +2873,7 @@ def sin(x):
2873
2873
  :param x: Argument.
2874
2874
  :type x: float64
2875
2875
  :rtype: float64
2876
- """
2876
+ """
2877
2877
 
2878
2878
 
2879
2879
  def sincos(x):
@@ -2883,7 +2883,7 @@ def sincos(x):
2883
2883
  :param x: Argument.
2884
2884
  :type x: float64
2885
2885
  :rtype: UniTuple(float64 x 2)
2886
- """
2886
+ """
2887
2887
 
2888
2888
 
2889
2889
  def sincosf(x):
@@ -2893,7 +2893,7 @@ def sincosf(x):
2893
2893
  :param x: Argument.
2894
2894
  :type x: float32
2895
2895
  :rtype: UniTuple(float32 x 2)
2896
- """
2896
+ """
2897
2897
 
2898
2898
 
2899
2899
  def sincospi(x):
@@ -2903,7 +2903,7 @@ def sincospi(x):
2903
2903
  :param x: Argument.
2904
2904
  :type x: float64
2905
2905
  :rtype: UniTuple(float64 x 2)
2906
- """
2906
+ """
2907
2907
 
2908
2908
 
2909
2909
  def sincospif(x):
@@ -2913,7 +2913,7 @@ def sincospif(x):
2913
2913
  :param x: Argument.
2914
2914
  :type x: float32
2915
2915
  :rtype: UniTuple(float32 x 2)
2916
- """
2916
+ """
2917
2917
 
2918
2918
 
2919
2919
  def sinf(x):
@@ -2923,7 +2923,7 @@ def sinf(x):
2923
2923
  :param x: Argument.
2924
2924
  :type x: float32
2925
2925
  :rtype: float32
2926
- """
2926
+ """
2927
2927
 
2928
2928
 
2929
2929
  def sinh(x):
@@ -2933,7 +2933,7 @@ def sinh(x):
2933
2933
  :param x: Argument.
2934
2934
  :type x: float64
2935
2935
  :rtype: float64
2936
- """
2936
+ """
2937
2937
 
2938
2938
 
2939
2939
  def sinhf(x):
@@ -2943,7 +2943,7 @@ def sinhf(x):
2943
2943
  :param x: Argument.
2944
2944
  :type x: float32
2945
2945
  :rtype: float32
2946
- """
2946
+ """
2947
2947
 
2948
2948
 
2949
2949
  def sinpi(x):
@@ -2953,7 +2953,7 @@ def sinpi(x):
2953
2953
  :param x: Argument.
2954
2954
  :type x: float64
2955
2955
  :rtype: float64
2956
- """
2956
+ """
2957
2957
 
2958
2958
 
2959
2959
  def sinpif(x):
@@ -2963,7 +2963,7 @@ def sinpif(x):
2963
2963
  :param x: Argument.
2964
2964
  :type x: float32
2965
2965
  :rtype: float32
2966
- """
2966
+ """
2967
2967
 
2968
2968
 
2969
2969
  def sqrt(x):
@@ -2973,7 +2973,7 @@ def sqrt(x):
2973
2973
  :param x: Argument.
2974
2974
  :type x: float64
2975
2975
  :rtype: float64
2976
- """
2976
+ """
2977
2977
 
2978
2978
 
2979
2979
  def sqrtf(x):
@@ -2983,7 +2983,7 @@ def sqrtf(x):
2983
2983
  :param x: Argument.
2984
2984
  :type x: float32
2985
2985
  :rtype: float32
2986
- """
2986
+ """
2987
2987
 
2988
2988
 
2989
2989
  def tan(x):
@@ -2993,7 +2993,7 @@ def tan(x):
2993
2993
  :param x: Argument.
2994
2994
  :type x: float64
2995
2995
  :rtype: float64
2996
- """
2996
+ """
2997
2997
 
2998
2998
 
2999
2999
  def tanf(x):
@@ -3003,7 +3003,7 @@ def tanf(x):
3003
3003
  :param x: Argument.
3004
3004
  :type x: float32
3005
3005
  :rtype: float32
3006
- """
3006
+ """
3007
3007
 
3008
3008
 
3009
3009
  def tanh(x):
@@ -3013,7 +3013,7 @@ def tanh(x):
3013
3013
  :param x: Argument.
3014
3014
  :type x: float64
3015
3015
  :rtype: float64
3016
- """
3016
+ """
3017
3017
 
3018
3018
 
3019
3019
  def tanhf(x):
@@ -3023,7 +3023,7 @@ def tanhf(x):
3023
3023
  :param x: Argument.
3024
3024
  :type x: float32
3025
3025
  :rtype: float32
3026
- """
3026
+ """
3027
3027
 
3028
3028
 
3029
3029
  def tgamma(x):
@@ -3033,7 +3033,7 @@ def tgamma(x):
3033
3033
  :param x: Argument.
3034
3034
  :type x: float64
3035
3035
  :rtype: float64
3036
- """
3036
+ """
3037
3037
 
3038
3038
 
3039
3039
  def tgammaf(x):
@@ -3043,7 +3043,7 @@ def tgammaf(x):
3043
3043
  :param x: Argument.
3044
3044
  :type x: float32
3045
3045
  :rtype: float32
3046
- """
3046
+ """
3047
3047
 
3048
3048
 
3049
3049
  def trunc(x):
@@ -3053,7 +3053,7 @@ def trunc(x):
3053
3053
  :param x: Argument.
3054
3054
  :type x: float64
3055
3055
  :rtype: float64
3056
- """
3056
+ """
3057
3057
 
3058
3058
 
3059
3059
  def truncf(x):
@@ -3063,7 +3063,7 @@ def truncf(x):
3063
3063
  :param x: Argument.
3064
3064
  :type x: float32
3065
3065
  :rtype: float32
3066
- """
3066
+ """
3067
3067
 
3068
3068
 
3069
3069
  def uhadd(x, y):
@@ -3075,7 +3075,7 @@ def uhadd(x, y):
3075
3075
  :param y: Argument.
3076
3076
  :type y: int32
3077
3077
  :rtype: int32
3078
- """
3078
+ """
3079
3079
 
3080
3080
 
3081
3081
  def uint2double_rn(i):
@@ -3085,7 +3085,7 @@ def uint2double_rn(i):
3085
3085
  :param i: Argument.
3086
3086
  :type i: int32
3087
3087
  :rtype: float64
3088
- """
3088
+ """
3089
3089
 
3090
3090
 
3091
3091
  def uint2float_rd(x):
@@ -3095,7 +3095,7 @@ def uint2float_rd(x):
3095
3095
  :param in: Argument.
3096
3096
  :type in: int32
3097
3097
  :rtype: float32
3098
- """
3098
+ """
3099
3099
 
3100
3100
 
3101
3101
  def uint2float_rn(x):
@@ -3105,7 +3105,7 @@ def uint2float_rn(x):
3105
3105
  :param in: Argument.
3106
3106
  :type in: int32
3107
3107
  :rtype: float32
3108
- """
3108
+ """
3109
3109
 
3110
3110
 
3111
3111
  def uint2float_ru(x):
@@ -3115,7 +3115,7 @@ def uint2float_ru(x):
3115
3115
  :param in: Argument.
3116
3116
  :type in: int32
3117
3117
  :rtype: float32
3118
- """
3118
+ """
3119
3119
 
3120
3120
 
3121
3121
  def uint2float_rz(x):
@@ -3125,7 +3125,7 @@ def uint2float_rz(x):
3125
3125
  :param in: Argument.
3126
3126
  :type in: int32
3127
3127
  :rtype: float32
3128
- """
3128
+ """
3129
3129
 
3130
3130
 
3131
3131
  def ull2double_rd(l):
@@ -3135,7 +3135,7 @@ def ull2double_rd(l):
3135
3135
  :param l: Argument.
3136
3136
  :type l: int64
3137
3137
  :rtype: float64
3138
- """
3138
+ """
3139
3139
 
3140
3140
 
3141
3141
  def ull2double_rn(l):
@@ -3145,7 +3145,7 @@ def ull2double_rn(l):
3145
3145
  :param l: Argument.
3146
3146
  :type l: int64
3147
3147
  :rtype: float64
3148
- """
3148
+ """
3149
3149
 
3150
3150
 
3151
3151
  def ull2double_ru(l):
@@ -3155,7 +3155,7 @@ def ull2double_ru(l):
3155
3155
  :param l: Argument.
3156
3156
  :type l: int64
3157
3157
  :rtype: float64
3158
- """
3158
+ """
3159
3159
 
3160
3160
 
3161
3161
  def ull2double_rz(l):
@@ -3165,7 +3165,7 @@ def ull2double_rz(l):
3165
3165
  :param l: Argument.
3166
3166
  :type l: int64
3167
3167
  :rtype: float64
3168
- """
3168
+ """
3169
3169
 
3170
3170
 
3171
3171
  def ull2float_rd(l):
@@ -3175,7 +3175,7 @@ def ull2float_rd(l):
3175
3175
  :param l: Argument.
3176
3176
  :type l: int64
3177
3177
  :rtype: float32
3178
- """
3178
+ """
3179
3179
 
3180
3180
 
3181
3181
  def ull2float_rn(l):
@@ -3185,7 +3185,7 @@ def ull2float_rn(l):
3185
3185
  :param l: Argument.
3186
3186
  :type l: int64
3187
3187
  :rtype: float32
3188
- """
3188
+ """
3189
3189
 
3190
3190
 
3191
3191
  def ull2float_ru(l):
@@ -3195,7 +3195,7 @@ def ull2float_ru(l):
3195
3195
  :param l: Argument.
3196
3196
  :type l: int64
3197
3197
  :rtype: float32
3198
- """
3198
+ """
3199
3199
 
3200
3200
 
3201
3201
  def ull2float_rz(l):
@@ -3205,7 +3205,7 @@ def ull2float_rz(l):
3205
3205
  :param l: Argument.
3206
3206
  :type l: int64
3207
3207
  :rtype: float32
3208
- """
3208
+ """
3209
3209
 
3210
3210
 
3211
3211
  def ullmax(x, y):
@@ -3217,7 +3217,7 @@ def ullmax(x, y):
3217
3217
  :param y: Argument.
3218
3218
  :type y: int64
3219
3219
  :rtype: int64
3220
- """
3220
+ """
3221
3221
 
3222
3222
 
3223
3223
  def ullmin(x, y):
@@ -3229,7 +3229,7 @@ def ullmin(x, y):
3229
3229
  :param y: Argument.
3230
3230
  :type y: int64
3231
3231
  :rtype: int64
3232
- """
3232
+ """
3233
3233
 
3234
3234
 
3235
3235
  def umax(x, y):
@@ -3241,7 +3241,7 @@ def umax(x, y):
3241
3241
  :param y: Argument.
3242
3242
  :type y: int32
3243
3243
  :rtype: int32
3244
- """
3244
+ """
3245
3245
 
3246
3246
 
3247
3247
  def umin(x, y):
@@ -3253,7 +3253,7 @@ def umin(x, y):
3253
3253
  :param y: Argument.
3254
3254
  :type y: int32
3255
3255
  :rtype: int32
3256
- """
3256
+ """
3257
3257
 
3258
3258
 
3259
3259
  def umul24(x, y):
@@ -3265,7 +3265,7 @@ def umul24(x, y):
3265
3265
  :param y: Argument.
3266
3266
  :type y: int32
3267
3267
  :rtype: int32
3268
- """
3268
+ """
3269
3269
 
3270
3270
 
3271
3271
  def umul64hi(x, y):
@@ -3277,7 +3277,7 @@ def umul64hi(x, y):
3277
3277
  :param y: Argument.
3278
3278
  :type y: int64
3279
3279
  :rtype: int64
3280
- """
3280
+ """
3281
3281
 
3282
3282
 
3283
3283
  def umulhi(x, y):
@@ -3289,7 +3289,7 @@ def umulhi(x, y):
3289
3289
  :param y: Argument.
3290
3290
  :type y: int32
3291
3291
  :rtype: int32
3292
- """
3292
+ """
3293
3293
 
3294
3294
 
3295
3295
  def urhadd(x, y):
@@ -3301,7 +3301,7 @@ def urhadd(x, y):
3301
3301
  :param y: Argument.
3302
3302
  :type y: int32
3303
3303
  :rtype: int32
3304
- """
3304
+ """
3305
3305
 
3306
3306
 
3307
3307
  def usad(x, y, z):
@@ -3315,7 +3315,7 @@ def usad(x, y, z):
3315
3315
  :param z: Argument.
3316
3316
  :type z: int32
3317
3317
  :rtype: int32
3318
- """
3318
+ """
3319
3319
 
3320
3320
 
3321
3321
  def y0(x):
@@ -3325,7 +3325,7 @@ def y0(x):
3325
3325
  :param x: Argument.
3326
3326
  :type x: float64
3327
3327
  :rtype: float64
3328
- """
3328
+ """
3329
3329
 
3330
3330
 
3331
3331
  def y0f(x):
@@ -3335,7 +3335,7 @@ def y0f(x):
3335
3335
  :param x: Argument.
3336
3336
  :type x: float32
3337
3337
  :rtype: float32
3338
- """
3338
+ """
3339
3339
 
3340
3340
 
3341
3341
  def y1(x):
@@ -3345,7 +3345,7 @@ def y1(x):
3345
3345
  :param x: Argument.
3346
3346
  :type x: float64
3347
3347
  :rtype: float64
3348
- """
3348
+ """
3349
3349
 
3350
3350
 
3351
3351
  def y1f(x):
@@ -3355,7 +3355,7 @@ def y1f(x):
3355
3355
  :param x: Argument.
3356
3356
  :type x: float32
3357
3357
  :rtype: float32
3358
- """
3358
+ """
3359
3359
 
3360
3360
 
3361
3361
  def yn(n, x):
@@ -3367,7 +3367,7 @@ def yn(n, x):
3367
3367
  :param x: Argument.
3368
3368
  :type x: float64
3369
3369
  :rtype: float64
3370
- """
3370
+ """
3371
3371
 
3372
3372
 
3373
3373
  def ynf(n, x):
@@ -3379,4 +3379,4 @@ def ynf(n, x):
3379
3379
  :param x: Argument.
3380
3380
  :type x: float32
3381
3381
  :rtype: float32
3382
- """
3382
+ """