triton-windows 3.1.0.post17__cp39-cp39-win_amd64.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.

Potentially problematic release.


This version of triton-windows might be problematic. Click here for more details.

Files changed (248) hide show
  1. triton/_C/libtriton.pyd +0 -0
  2. triton/__init__.py +73 -0
  3. triton/backends/__init__.py +50 -0
  4. triton/backends/amd/compiler.py +262 -0
  5. triton/backends/amd/driver.c +211 -0
  6. triton/backends/amd/driver.py +497 -0
  7. triton/backends/amd/include/hip/amd_detail/amd_channel_descriptor.h +358 -0
  8. triton/backends/amd/include/hip/amd_detail/amd_device_functions.h +1031 -0
  9. triton/backends/amd/include/hip/amd_detail/amd_hip_atomic.h +1612 -0
  10. triton/backends/amd/include/hip/amd_detail/amd_hip_bf16.h +1337 -0
  11. triton/backends/amd/include/hip/amd_detail/amd_hip_bfloat16.h +293 -0
  12. triton/backends/amd/include/hip/amd_detail/amd_hip_common.h +32 -0
  13. triton/backends/amd/include/hip/amd_detail/amd_hip_complex.h +174 -0
  14. triton/backends/amd/include/hip/amd_detail/amd_hip_cooperative_groups.h +829 -0
  15. triton/backends/amd/include/hip/amd_detail/amd_hip_fp16.h +1809 -0
  16. triton/backends/amd/include/hip/amd_detail/amd_hip_gl_interop.h +108 -0
  17. triton/backends/amd/include/hip/amd_detail/amd_hip_math_constants.h +124 -0
  18. triton/backends/amd/include/hip/amd_detail/amd_hip_runtime.h +405 -0
  19. triton/backends/amd/include/hip/amd_detail/amd_hip_runtime_pt_api.h +196 -0
  20. triton/backends/amd/include/hip/amd_detail/amd_hip_unsafe_atomics.h +565 -0
  21. triton/backends/amd/include/hip/amd_detail/amd_hip_vector_types.h +2226 -0
  22. triton/backends/amd/include/hip/amd_detail/amd_math_functions.h +104 -0
  23. triton/backends/amd/include/hip/amd_detail/amd_surface_functions.h +244 -0
  24. triton/backends/amd/include/hip/amd_detail/amd_warp_functions.h +494 -0
  25. triton/backends/amd/include/hip/amd_detail/concepts.hpp +30 -0
  26. triton/backends/amd/include/hip/amd_detail/device_library_decls.h +133 -0
  27. triton/backends/amd/include/hip/amd_detail/functional_grid_launch.hpp +218 -0
  28. triton/backends/amd/include/hip/amd_detail/grid_launch.h +67 -0
  29. triton/backends/amd/include/hip/amd_detail/grid_launch.hpp +50 -0
  30. triton/backends/amd/include/hip/amd_detail/grid_launch_GGL.hpp +26 -0
  31. triton/backends/amd/include/hip/amd_detail/helpers.hpp +137 -0
  32. triton/backends/amd/include/hip/amd_detail/hip_api_trace.hpp +1350 -0
  33. triton/backends/amd/include/hip/amd_detail/hip_assert.h +101 -0
  34. triton/backends/amd/include/hip/amd_detail/hip_cooperative_groups_helper.h +242 -0
  35. triton/backends/amd/include/hip/amd_detail/hip_fp16_gcc.h +254 -0
  36. triton/backends/amd/include/hip/amd_detail/hip_fp16_math_fwd.h +96 -0
  37. triton/backends/amd/include/hip/amd_detail/hip_ldg.h +100 -0
  38. triton/backends/amd/include/hip/amd_detail/hip_prof_str.h +10169 -0
  39. triton/backends/amd/include/hip/amd_detail/hip_runtime_prof.h +77 -0
  40. triton/backends/amd/include/hip/amd_detail/host_defines.h +180 -0
  41. triton/backends/amd/include/hip/amd_detail/hsa_helpers.hpp +102 -0
  42. triton/backends/amd/include/hip/amd_detail/macro_based_grid_launch.hpp +798 -0
  43. triton/backends/amd/include/hip/amd_detail/math_fwd.h +698 -0
  44. triton/backends/amd/include/hip/amd_detail/ockl_image.h +177 -0
  45. triton/backends/amd/include/hip/amd_detail/program_state.hpp +107 -0
  46. triton/backends/amd/include/hip/amd_detail/texture_fetch_functions.h +491 -0
  47. triton/backends/amd/include/hip/amd_detail/texture_indirect_functions.h +478 -0
  48. triton/backends/amd/include/hip/channel_descriptor.h +39 -0
  49. triton/backends/amd/include/hip/device_functions.h +38 -0
  50. triton/backends/amd/include/hip/driver_types.h +468 -0
  51. triton/backends/amd/include/hip/hip_bf16.h +36 -0
  52. triton/backends/amd/include/hip/hip_bfloat16.h +44 -0
  53. triton/backends/amd/include/hip/hip_common.h +100 -0
  54. triton/backends/amd/include/hip/hip_complex.h +38 -0
  55. triton/backends/amd/include/hip/hip_cooperative_groups.h +46 -0
  56. triton/backends/amd/include/hip/hip_deprecated.h +95 -0
  57. triton/backends/amd/include/hip/hip_ext.h +159 -0
  58. triton/backends/amd/include/hip/hip_fp16.h +36 -0
  59. triton/backends/amd/include/hip/hip_gl_interop.h +32 -0
  60. triton/backends/amd/include/hip/hip_hcc.h +24 -0
  61. triton/backends/amd/include/hip/hip_math_constants.h +36 -0
  62. triton/backends/amd/include/hip/hip_profile.h +27 -0
  63. triton/backends/amd/include/hip/hip_runtime.h +75 -0
  64. triton/backends/amd/include/hip/hip_runtime_api.h +8919 -0
  65. triton/backends/amd/include/hip/hip_texture_types.h +29 -0
  66. triton/backends/amd/include/hip/hip_vector_types.h +41 -0
  67. triton/backends/amd/include/hip/hip_version.h +17 -0
  68. triton/backends/amd/include/hip/hiprtc.h +421 -0
  69. triton/backends/amd/include/hip/library_types.h +78 -0
  70. triton/backends/amd/include/hip/math_functions.h +42 -0
  71. triton/backends/amd/include/hip/surface_types.h +63 -0
  72. triton/backends/amd/include/hip/texture_types.h +194 -0
  73. triton/backends/amd/include/hsa/Brig.h +1131 -0
  74. triton/backends/amd/include/hsa/amd_hsa_common.h +91 -0
  75. triton/backends/amd/include/hsa/amd_hsa_elf.h +435 -0
  76. triton/backends/amd/include/hsa/amd_hsa_kernel_code.h +269 -0
  77. triton/backends/amd/include/hsa/amd_hsa_queue.h +109 -0
  78. triton/backends/amd/include/hsa/amd_hsa_signal.h +80 -0
  79. triton/backends/amd/include/hsa/hsa.h +5729 -0
  80. triton/backends/amd/include/hsa/hsa_amd_tool.h +91 -0
  81. triton/backends/amd/include/hsa/hsa_api_trace.h +566 -0
  82. triton/backends/amd/include/hsa/hsa_ext_amd.h +3090 -0
  83. triton/backends/amd/include/hsa/hsa_ext_finalize.h +531 -0
  84. triton/backends/amd/include/hsa/hsa_ext_image.h +1454 -0
  85. triton/backends/amd/include/hsa/hsa_ven_amd_aqlprofile.h +488 -0
  86. triton/backends/amd/include/hsa/hsa_ven_amd_loader.h +667 -0
  87. triton/backends/amd/include/roctracer/ext/prof_protocol.h +107 -0
  88. triton/backends/amd/include/roctracer/hip_ostream_ops.h +4435 -0
  89. triton/backends/amd/include/roctracer/hsa_ostream_ops.h +1467 -0
  90. triton/backends/amd/include/roctracer/hsa_prof_str.h +3027 -0
  91. triton/backends/amd/include/roctracer/roctracer.h +779 -0
  92. triton/backends/amd/include/roctracer/roctracer_ext.h +81 -0
  93. triton/backends/amd/include/roctracer/roctracer_hcc.h +24 -0
  94. triton/backends/amd/include/roctracer/roctracer_hip.h +37 -0
  95. triton/backends/amd/include/roctracer/roctracer_hsa.h +112 -0
  96. triton/backends/amd/include/roctracer/roctracer_plugin.h +137 -0
  97. triton/backends/amd/include/roctracer/roctracer_roctx.h +67 -0
  98. triton/backends/amd/include/roctracer/roctx.h +229 -0
  99. triton/backends/amd/lib/ockl.bc +0 -0
  100. triton/backends/amd/lib/ocml.bc +0 -0
  101. triton/backends/compiler.py +76 -0
  102. triton/backends/driver.py +34 -0
  103. triton/backends/nvidia/__init__.py +0 -0
  104. triton/backends/nvidia/bin/ptxas.exe +0 -0
  105. triton/backends/nvidia/compiler.py +347 -0
  106. triton/backends/nvidia/driver.c +451 -0
  107. triton/backends/nvidia/driver.py +430 -0
  108. triton/backends/nvidia/include/cuda.h +24359 -0
  109. triton/backends/nvidia/lib/libdevice.10.bc +0 -0
  110. triton/backends/nvidia/lib/x64/cuda.lib +0 -0
  111. triton/compiler/__init__.py +4 -0
  112. triton/compiler/code_generator.py +1302 -0
  113. triton/compiler/compiler.py +416 -0
  114. triton/compiler/errors.py +51 -0
  115. triton/compiler/make_launcher.py +0 -0
  116. triton/errors.py +5 -0
  117. triton/language/__init__.py +284 -0
  118. triton/language/core.py +2621 -0
  119. triton/language/extra/__init__.py +4 -0
  120. triton/language/extra/cuda/__init__.py +8 -0
  121. triton/language/extra/cuda/libdevice.py +1629 -0
  122. triton/language/extra/cuda/utils.py +109 -0
  123. triton/language/extra/hip/__init__.py +3 -0
  124. triton/language/extra/hip/libdevice.py +468 -0
  125. triton/language/extra/libdevice.py +1213 -0
  126. triton/language/math.py +250 -0
  127. triton/language/random.py +207 -0
  128. triton/language/semantic.py +1621 -0
  129. triton/language/standard.py +441 -0
  130. triton/ops/__init__.py +7 -0
  131. triton/ops/blocksparse/__init__.py +7 -0
  132. triton/ops/blocksparse/matmul.py +432 -0
  133. triton/ops/blocksparse/softmax.py +228 -0
  134. triton/ops/cross_entropy.py +96 -0
  135. triton/ops/flash_attention.py +466 -0
  136. triton/ops/matmul.py +219 -0
  137. triton/ops/matmul_perf_model.py +171 -0
  138. triton/runtime/__init__.py +23 -0
  139. triton/runtime/autotuner.py +361 -0
  140. triton/runtime/build.py +129 -0
  141. triton/runtime/cache.py +289 -0
  142. triton/runtime/driver.py +60 -0
  143. triton/runtime/errors.py +26 -0
  144. triton/runtime/interpreter.py +1127 -0
  145. triton/runtime/jit.py +956 -0
  146. triton/runtime/tcc/include/_mingw.h +170 -0
  147. triton/runtime/tcc/include/assert.h +57 -0
  148. triton/runtime/tcc/include/conio.h +409 -0
  149. triton/runtime/tcc/include/ctype.h +281 -0
  150. triton/runtime/tcc/include/dir.h +31 -0
  151. triton/runtime/tcc/include/direct.h +68 -0
  152. triton/runtime/tcc/include/dirent.h +135 -0
  153. triton/runtime/tcc/include/dos.h +55 -0
  154. triton/runtime/tcc/include/errno.h +75 -0
  155. triton/runtime/tcc/include/excpt.h +123 -0
  156. triton/runtime/tcc/include/fcntl.h +52 -0
  157. triton/runtime/tcc/include/fenv.h +108 -0
  158. triton/runtime/tcc/include/float.h +57 -0
  159. triton/runtime/tcc/include/inttypes.h +297 -0
  160. triton/runtime/tcc/include/io.h +418 -0
  161. triton/runtime/tcc/include/limits.h +111 -0
  162. triton/runtime/tcc/include/locale.h +91 -0
  163. triton/runtime/tcc/include/malloc.h +181 -0
  164. triton/runtime/tcc/include/math.h +737 -0
  165. triton/runtime/tcc/include/mem.h +13 -0
  166. triton/runtime/tcc/include/memory.h +40 -0
  167. triton/runtime/tcc/include/process.h +176 -0
  168. triton/runtime/tcc/include/sec_api/conio_s.h +42 -0
  169. triton/runtime/tcc/include/sec_api/crtdbg_s.h +19 -0
  170. triton/runtime/tcc/include/sec_api/io_s.h +33 -0
  171. triton/runtime/tcc/include/sec_api/mbstring_s.h +52 -0
  172. triton/runtime/tcc/include/sec_api/search_s.h +25 -0
  173. triton/runtime/tcc/include/sec_api/stdio_s.h +145 -0
  174. triton/runtime/tcc/include/sec_api/stdlib_s.h +67 -0
  175. triton/runtime/tcc/include/sec_api/stralign_s.h +30 -0
  176. triton/runtime/tcc/include/sec_api/string_s.h +41 -0
  177. triton/runtime/tcc/include/sec_api/sys/timeb_s.h +34 -0
  178. triton/runtime/tcc/include/sec_api/tchar_s.h +266 -0
  179. triton/runtime/tcc/include/sec_api/time_s.h +61 -0
  180. triton/runtime/tcc/include/sec_api/wchar_s.h +128 -0
  181. triton/runtime/tcc/include/setjmp.h +160 -0
  182. triton/runtime/tcc/include/share.h +28 -0
  183. triton/runtime/tcc/include/signal.h +63 -0
  184. triton/runtime/tcc/include/stdarg.h +79 -0
  185. triton/runtime/tcc/include/stdbool.h +11 -0
  186. triton/runtime/tcc/include/stddef.h +54 -0
  187. triton/runtime/tcc/include/stdint.h +212 -0
  188. triton/runtime/tcc/include/stdio.h +429 -0
  189. triton/runtime/tcc/include/stdlib.h +580 -0
  190. triton/runtime/tcc/include/string.h +164 -0
  191. triton/runtime/tcc/include/sys/fcntl.h +13 -0
  192. triton/runtime/tcc/include/sys/file.h +14 -0
  193. triton/runtime/tcc/include/sys/locking.h +30 -0
  194. triton/runtime/tcc/include/sys/stat.h +290 -0
  195. triton/runtime/tcc/include/sys/time.h +69 -0
  196. triton/runtime/tcc/include/sys/timeb.h +133 -0
  197. triton/runtime/tcc/include/sys/types.h +118 -0
  198. triton/runtime/tcc/include/sys/unistd.h +14 -0
  199. triton/runtime/tcc/include/sys/utime.h +146 -0
  200. triton/runtime/tcc/include/tcc/tcc_libm.h +201 -0
  201. triton/runtime/tcc/include/tcclib.h +80 -0
  202. triton/runtime/tcc/include/tchar.h +1102 -0
  203. triton/runtime/tcc/include/time.h +287 -0
  204. triton/runtime/tcc/include/vadefs.h +11 -0
  205. triton/runtime/tcc/include/values.h +4 -0
  206. triton/runtime/tcc/include/varargs.h +12 -0
  207. triton/runtime/tcc/include/wchar.h +873 -0
  208. triton/runtime/tcc/include/wctype.h +172 -0
  209. triton/runtime/tcc/include/winapi/basetsd.h +149 -0
  210. triton/runtime/tcc/include/winapi/basetyps.h +85 -0
  211. triton/runtime/tcc/include/winapi/guiddef.h +156 -0
  212. triton/runtime/tcc/include/winapi/poppack.h +8 -0
  213. triton/runtime/tcc/include/winapi/pshpack1.h +8 -0
  214. triton/runtime/tcc/include/winapi/pshpack2.h +8 -0
  215. triton/runtime/tcc/include/winapi/pshpack4.h +8 -0
  216. triton/runtime/tcc/include/winapi/pshpack8.h +8 -0
  217. triton/runtime/tcc/include/winapi/winbase.h +2951 -0
  218. triton/runtime/tcc/include/winapi/wincon.h +301 -0
  219. triton/runtime/tcc/include/winapi/windef.h +293 -0
  220. triton/runtime/tcc/include/winapi/windows.h +127 -0
  221. triton/runtime/tcc/include/winapi/winerror.h +3166 -0
  222. triton/runtime/tcc/include/winapi/wingdi.h +4080 -0
  223. triton/runtime/tcc/include/winapi/winnt.h +5835 -0
  224. triton/runtime/tcc/include/winapi/winreg.h +272 -0
  225. triton/runtime/tcc/include/winapi/winuser.h +5651 -0
  226. triton/runtime/tcc/include/winapi/winver.h +160 -0
  227. triton/runtime/tcc/lib/cuda.def +697 -0
  228. triton/runtime/tcc/lib/gdi32.def +337 -0
  229. triton/runtime/tcc/lib/kernel32.def +770 -0
  230. triton/runtime/tcc/lib/libtcc1-64.a +0 -0
  231. triton/runtime/tcc/lib/msvcrt.def +1399 -0
  232. triton/runtime/tcc/lib/python3.def +810 -0
  233. triton/runtime/tcc/lib/user32.def +658 -0
  234. triton/runtime/tcc/libtcc.dll +0 -0
  235. triton/runtime/tcc/tcc.exe +0 -0
  236. triton/testing.py +496 -0
  237. triton/tools/__init__.py +0 -0
  238. triton/tools/build_extern.py +365 -0
  239. triton/tools/compile.c +67 -0
  240. triton/tools/compile.h +14 -0
  241. triton/tools/compile.py +145 -0
  242. triton/tools/disasm.py +142 -0
  243. triton/tools/link.py +322 -0
  244. triton/windows_utils.py +373 -0
  245. triton_windows-3.1.0.post17.dist-info/METADATA +41 -0
  246. triton_windows-3.1.0.post17.dist-info/RECORD +248 -0
  247. triton_windows-3.1.0.post17.dist-info/WHEEL +5 -0
  248. triton_windows-3.1.0.post17.dist-info/top_level.txt +14 -0
@@ -0,0 +1,1213 @@
1
+ from .cuda import libdevice as cuda_libdevice
2
+ from .hip import libdevice as hip_libdevice
3
+ from triton.language import core
4
+ from functools import wraps
5
+ from typing import TypeVar
6
+
7
+ T = TypeVar('T')
8
+
9
+
10
+ def dispatch(fn: T) -> T:
11
+ """Dispatch a function to a correct implementation."""
12
+ assert callable(fn)
13
+
14
+ @wraps(fn)
15
+ def wrapper(*args, **kwargs):
16
+ _backend = kwargs["_builder"].options.backend_name
17
+ if _backend == 'cuda':
18
+ _curr_libdevice_module = cuda_libdevice
19
+ elif _backend == 'hip':
20
+ _curr_libdevice_module = hip_libdevice
21
+ else:
22
+ raise RuntimeError('unknown backend')
23
+
24
+ try:
25
+ _impl = getattr(_curr_libdevice_module, fn.__name__)
26
+ except AttributeError:
27
+ raise RuntimeError(f'`{_backend}` does not provide support for `{fn.__name__}` extra function')
28
+
29
+ return _impl(*args, **kwargs)
30
+
31
+ return wrapper
32
+
33
+
34
+ @core.extern
35
+ @dispatch
36
+ def clz(arg0, _builder=None):
37
+ ...
38
+
39
+
40
+ @core.extern
41
+ @dispatch
42
+ def popc(arg0, _builder=None):
43
+ ...
44
+
45
+
46
+ @core.extern
47
+ @dispatch
48
+ def byte_perm(arg0, arg1, arg2, _builder=None):
49
+ ...
50
+
51
+
52
+ @core.extern
53
+ @dispatch
54
+ def mulhi(arg0, arg1, _builder=None):
55
+ ...
56
+
57
+
58
+ @core.extern
59
+ @dispatch
60
+ def mul24(arg0, arg1, _builder=None):
61
+ ...
62
+
63
+
64
+ @core.extern
65
+ @dispatch
66
+ def brev(arg0, _builder=None):
67
+ ...
68
+
69
+
70
+ @core.extern
71
+ @dispatch
72
+ def sad(arg0, arg1, arg2, _builder=None):
73
+ ...
74
+
75
+
76
+ @core.extern
77
+ @dispatch
78
+ def abs(arg0, _builder=None):
79
+ ...
80
+
81
+
82
+ @core.extern
83
+ @dispatch
84
+ def floor(arg0, _builder=None):
85
+ ...
86
+
87
+
88
+ @core.extern
89
+ @dispatch
90
+ def rcp64h(arg0, _builder=None):
91
+ ...
92
+
93
+
94
+ @core.extern
95
+ @dispatch
96
+ def rsqrt(arg0, _builder=None):
97
+ ...
98
+
99
+
100
+ @core.extern
101
+ @dispatch
102
+ def ceil(arg0, _builder=None):
103
+ ...
104
+
105
+
106
+ @core.extern
107
+ @dispatch
108
+ def trunc(arg0, _builder=None):
109
+ ...
110
+
111
+
112
+ @core.extern
113
+ @dispatch
114
+ def exp2(arg0, _builder=None):
115
+ ...
116
+
117
+
118
+ @core.extern
119
+ @dispatch
120
+ def saturatef(arg0, _builder=None):
121
+ ...
122
+
123
+
124
+ @core.extern
125
+ @dispatch
126
+ def fma_rn(arg0, arg1, arg2, _builder=None):
127
+ ...
128
+
129
+
130
+ @core.extern
131
+ @dispatch
132
+ def fma_rz(arg0, arg1, arg2, _builder=None):
133
+ ...
134
+
135
+
136
+ @core.extern
137
+ @dispatch
138
+ def fma_rd(arg0, arg1, arg2, _builder=None):
139
+ ...
140
+
141
+
142
+ @core.extern
143
+ @dispatch
144
+ def fma_ru(arg0, arg1, arg2, _builder=None):
145
+ ...
146
+
147
+
148
+ @core.extern
149
+ @dispatch
150
+ def fast_dividef(arg0, arg1, _builder=None):
151
+ ...
152
+
153
+
154
+ @core.extern
155
+ @dispatch
156
+ def div_rn(arg0, arg1, _builder=None):
157
+ ...
158
+
159
+
160
+ @core.extern
161
+ @dispatch
162
+ def div_rz(arg0, arg1, _builder=None):
163
+ ...
164
+
165
+
166
+ @core.extern
167
+ @dispatch
168
+ def div_rd(arg0, arg1, _builder=None):
169
+ ...
170
+
171
+
172
+ @core.extern
173
+ @dispatch
174
+ def div_ru(arg0, arg1, _builder=None):
175
+ ...
176
+
177
+
178
+ @core.extern
179
+ @dispatch
180
+ def rcp_rn(arg0, _builder=None):
181
+ ...
182
+
183
+
184
+ @core.extern
185
+ @dispatch
186
+ def rcp_rz(arg0, _builder=None):
187
+ ...
188
+
189
+
190
+ @core.extern
191
+ @dispatch
192
+ def rcp_rd(arg0, _builder=None):
193
+ ...
194
+
195
+
196
+ @core.extern
197
+ @dispatch
198
+ def rcp_ru(arg0, _builder=None):
199
+ ...
200
+
201
+
202
+ @core.extern
203
+ @dispatch
204
+ def sqrt_rn(arg0, _builder=None):
205
+ ...
206
+
207
+
208
+ @core.extern
209
+ @dispatch
210
+ def sqrt_rz(arg0, _builder=None):
211
+ ...
212
+
213
+
214
+ @core.extern
215
+ @dispatch
216
+ def sqrt_rd(arg0, _builder=None):
217
+ ...
218
+
219
+
220
+ @core.extern
221
+ @dispatch
222
+ def sqrt_ru(arg0, _builder=None):
223
+ ...
224
+
225
+
226
+ @core.extern
227
+ @dispatch
228
+ def sqrt(arg0, _builder=None):
229
+ ...
230
+
231
+
232
+ @core.extern
233
+ @dispatch
234
+ def add_rn(arg0, arg1, _builder=None):
235
+ ...
236
+
237
+
238
+ @core.extern
239
+ @dispatch
240
+ def add_rz(arg0, arg1, _builder=None):
241
+ ...
242
+
243
+
244
+ @core.extern
245
+ @dispatch
246
+ def add_rd(arg0, arg1, _builder=None):
247
+ ...
248
+
249
+
250
+ @core.extern
251
+ @dispatch
252
+ def add_ru(arg0, arg1, _builder=None):
253
+ ...
254
+
255
+
256
+ @core.extern
257
+ @dispatch
258
+ def mul_rn(arg0, arg1, _builder=None):
259
+ ...
260
+
261
+
262
+ @core.extern
263
+ @dispatch
264
+ def mul_rz(arg0, arg1, _builder=None):
265
+ ...
266
+
267
+
268
+ @core.extern
269
+ @dispatch
270
+ def mul_rd(arg0, arg1, _builder=None):
271
+ ...
272
+
273
+
274
+ @core.extern
275
+ @dispatch
276
+ def mul_ru(arg0, arg1, _builder=None):
277
+ ...
278
+
279
+
280
+ @core.extern
281
+ @dispatch
282
+ def double2float_rn(arg0, _builder=None):
283
+ ...
284
+
285
+
286
+ @core.extern
287
+ @dispatch
288
+ def double2float_rz(arg0, _builder=None):
289
+ ...
290
+
291
+
292
+ @core.extern
293
+ @dispatch
294
+ def double2float_rd(arg0, _builder=None):
295
+ ...
296
+
297
+
298
+ @core.extern
299
+ @dispatch
300
+ def double2float_ru(arg0, _builder=None):
301
+ ...
302
+
303
+
304
+ @core.extern
305
+ @dispatch
306
+ def double2int_rn(arg0, _builder=None):
307
+ ...
308
+
309
+
310
+ @core.extern
311
+ @dispatch
312
+ def double2int_rz(arg0, _builder=None):
313
+ ...
314
+
315
+
316
+ @core.extern
317
+ @dispatch
318
+ def double2int_rd(arg0, _builder=None):
319
+ ...
320
+
321
+
322
+ @core.extern
323
+ @dispatch
324
+ def double2int_ru(arg0, _builder=None):
325
+ ...
326
+
327
+
328
+ @core.extern
329
+ @dispatch
330
+ def double2uint_rn(arg0, _builder=None):
331
+ ...
332
+
333
+
334
+ @core.extern
335
+ @dispatch
336
+ def double2uint_rz(arg0, _builder=None):
337
+ ...
338
+
339
+
340
+ @core.extern
341
+ @dispatch
342
+ def double2uint_rd(arg0, _builder=None):
343
+ ...
344
+
345
+
346
+ @core.extern
347
+ @dispatch
348
+ def double2uint_ru(arg0, _builder=None):
349
+ ...
350
+
351
+
352
+ @core.extern
353
+ @dispatch
354
+ def int2double_rn(arg0, _builder=None):
355
+ ...
356
+
357
+
358
+ @core.extern
359
+ @dispatch
360
+ def uint2double_rn(arg0, _builder=None):
361
+ ...
362
+
363
+
364
+ @core.extern
365
+ @dispatch
366
+ def float2int_rn(arg0, _builder=None):
367
+ ...
368
+
369
+
370
+ @core.extern
371
+ @dispatch
372
+ def float2int_rz(arg0, _builder=None):
373
+ ...
374
+
375
+
376
+ @core.extern
377
+ @dispatch
378
+ def float2int_rd(arg0, _builder=None):
379
+ ...
380
+
381
+
382
+ @core.extern
383
+ @dispatch
384
+ def float2int_ru(arg0, _builder=None):
385
+ ...
386
+
387
+
388
+ @core.extern
389
+ @dispatch
390
+ def float2uint_rn(arg0, _builder=None):
391
+ ...
392
+
393
+
394
+ @core.extern
395
+ @dispatch
396
+ def float2uint_rz(arg0, _builder=None):
397
+ ...
398
+
399
+
400
+ @core.extern
401
+ @dispatch
402
+ def float2uint_rd(arg0, _builder=None):
403
+ ...
404
+
405
+
406
+ @core.extern
407
+ @dispatch
408
+ def float2uint_ru(arg0, _builder=None):
409
+ ...
410
+
411
+
412
+ @core.extern
413
+ @dispatch
414
+ def int2float_rn(arg0, _builder=None):
415
+ ...
416
+
417
+
418
+ @core.extern
419
+ @dispatch
420
+ def int2float_rz(arg0, _builder=None):
421
+ ...
422
+
423
+
424
+ @core.extern
425
+ @dispatch
426
+ def int2float_rd(arg0, _builder=None):
427
+ ...
428
+
429
+
430
+ @core.extern
431
+ @dispatch
432
+ def int2float_ru(arg0, _builder=None):
433
+ ...
434
+
435
+
436
+ @core.extern
437
+ @dispatch
438
+ def uint2float_rn(arg0, _builder=None):
439
+ ...
440
+
441
+
442
+ @core.extern
443
+ @dispatch
444
+ def uint2float_rz(arg0, _builder=None):
445
+ ...
446
+
447
+
448
+ @core.extern
449
+ @dispatch
450
+ def uint2float_rd(arg0, _builder=None):
451
+ ...
452
+
453
+
454
+ @core.extern
455
+ @dispatch
456
+ def uint2float_ru(arg0, _builder=None):
457
+ ...
458
+
459
+
460
+ @core.extern
461
+ @dispatch
462
+ def hiloint2double(arg0, arg1, _builder=None):
463
+ ...
464
+
465
+
466
+ @core.extern
467
+ @dispatch
468
+ def double2loint(arg0, _builder=None):
469
+ ...
470
+
471
+
472
+ @core.extern
473
+ @dispatch
474
+ def double2hiint(arg0, _builder=None):
475
+ ...
476
+
477
+
478
+ @core.extern
479
+ @dispatch
480
+ def float2ll_rn(arg0, _builder=None):
481
+ ...
482
+
483
+
484
+ @core.extern
485
+ @dispatch
486
+ def float2ll_rz(arg0, _builder=None):
487
+ ...
488
+
489
+
490
+ @core.extern
491
+ @dispatch
492
+ def float2ll_rd(arg0, _builder=None):
493
+ ...
494
+
495
+
496
+ @core.extern
497
+ @dispatch
498
+ def float2ll_ru(arg0, _builder=None):
499
+ ...
500
+
501
+
502
+ @core.extern
503
+ @dispatch
504
+ def float2ull_rn(arg0, _builder=None):
505
+ ...
506
+
507
+
508
+ @core.extern
509
+ @dispatch
510
+ def float2ull_rz(arg0, _builder=None):
511
+ ...
512
+
513
+
514
+ @core.extern
515
+ @dispatch
516
+ def float2ull_rd(arg0, _builder=None):
517
+ ...
518
+
519
+
520
+ @core.extern
521
+ @dispatch
522
+ def float2ull_ru(arg0, _builder=None):
523
+ ...
524
+
525
+
526
+ @core.extern
527
+ @dispatch
528
+ def double2ll_rn(arg0, _builder=None):
529
+ ...
530
+
531
+
532
+ @core.extern
533
+ @dispatch
534
+ def double2ll_rz(arg0, _builder=None):
535
+ ...
536
+
537
+
538
+ @core.extern
539
+ @dispatch
540
+ def double2ll_rd(arg0, _builder=None):
541
+ ...
542
+
543
+
544
+ @core.extern
545
+ @dispatch
546
+ def double2ll_ru(arg0, _builder=None):
547
+ ...
548
+
549
+
550
+ @core.extern
551
+ @dispatch
552
+ def double2ull_rn(arg0, _builder=None):
553
+ ...
554
+
555
+
556
+ @core.extern
557
+ @dispatch
558
+ def double2ull_rz(arg0, _builder=None):
559
+ ...
560
+
561
+
562
+ @core.extern
563
+ @dispatch
564
+ def double2ull_rd(arg0, _builder=None):
565
+ ...
566
+
567
+
568
+ @core.extern
569
+ @dispatch
570
+ def double2ull_ru(arg0, _builder=None):
571
+ ...
572
+
573
+
574
+ @core.extern
575
+ @dispatch
576
+ def ll2float_rn(arg0, _builder=None):
577
+ ...
578
+
579
+
580
+ @core.extern
581
+ @dispatch
582
+ def ll2float_rz(arg0, _builder=None):
583
+ ...
584
+
585
+
586
+ @core.extern
587
+ @dispatch
588
+ def ll2float_rd(arg0, _builder=None):
589
+ ...
590
+
591
+
592
+ @core.extern
593
+ @dispatch
594
+ def ll2float_ru(arg0, _builder=None):
595
+ ...
596
+
597
+
598
+ @core.extern
599
+ @dispatch
600
+ def ull2float_rn(arg0, _builder=None):
601
+ ...
602
+
603
+
604
+ @core.extern
605
+ @dispatch
606
+ def ull2float_rz(arg0, _builder=None):
607
+ ...
608
+
609
+
610
+ @core.extern
611
+ @dispatch
612
+ def ull2float_rd(arg0, _builder=None):
613
+ ...
614
+
615
+
616
+ @core.extern
617
+ @dispatch
618
+ def ull2float_ru(arg0, _builder=None):
619
+ ...
620
+
621
+
622
+ @core.extern
623
+ @dispatch
624
+ def ll2double_rn(arg0, _builder=None):
625
+ ...
626
+
627
+
628
+ @core.extern
629
+ @dispatch
630
+ def ll2double_rz(arg0, _builder=None):
631
+ ...
632
+
633
+
634
+ @core.extern
635
+ @dispatch
636
+ def ll2double_rd(arg0, _builder=None):
637
+ ...
638
+
639
+
640
+ @core.extern
641
+ @dispatch
642
+ def ll2double_ru(arg0, _builder=None):
643
+ ...
644
+
645
+
646
+ @core.extern
647
+ @dispatch
648
+ def ull2double_rn(arg0, _builder=None):
649
+ ...
650
+
651
+
652
+ @core.extern
653
+ @dispatch
654
+ def ull2double_rz(arg0, _builder=None):
655
+ ...
656
+
657
+
658
+ @core.extern
659
+ @dispatch
660
+ def ull2double_rd(arg0, _builder=None):
661
+ ...
662
+
663
+
664
+ @core.extern
665
+ @dispatch
666
+ def ull2double_ru(arg0, _builder=None):
667
+ ...
668
+
669
+
670
+ @core.extern
671
+ @dispatch
672
+ def int_as_float(arg0, _builder=None):
673
+ ...
674
+
675
+
676
+ @core.extern
677
+ @dispatch
678
+ def float_as_int(arg0, _builder=None):
679
+ ...
680
+
681
+
682
+ @core.extern
683
+ @dispatch
684
+ def uint_as_float(arg0, _builder=None):
685
+ ...
686
+
687
+
688
+ @core.extern
689
+ @dispatch
690
+ def float_as_uint(arg0, _builder=None):
691
+ ...
692
+
693
+
694
+ @core.extern
695
+ @dispatch
696
+ def longlong_as_double(arg0, _builder=None):
697
+ ...
698
+
699
+
700
+ @core.extern
701
+ @dispatch
702
+ def double_as_longlong(arg0, _builder=None):
703
+ ...
704
+
705
+
706
+ @core.extern
707
+ @dispatch
708
+ def fast_sinf(arg0, _builder=None):
709
+ ...
710
+
711
+
712
+ @core.extern
713
+ @dispatch
714
+ def fast_cosf(arg0, _builder=None):
715
+ ...
716
+
717
+
718
+ @core.extern
719
+ @dispatch
720
+ def fast_log2f(arg0, _builder=None):
721
+ ...
722
+
723
+
724
+ @core.extern
725
+ @dispatch
726
+ def fast_logf(arg0, _builder=None):
727
+ ...
728
+
729
+
730
+ @core.extern
731
+ @dispatch
732
+ def fast_expf(arg0, _builder=None):
733
+ ...
734
+
735
+
736
+ @core.extern
737
+ @dispatch
738
+ def fast_tanf(arg0, _builder=None):
739
+ ...
740
+
741
+
742
+ @core.extern
743
+ @dispatch
744
+ def fast_exp10f(arg0, _builder=None):
745
+ ...
746
+
747
+
748
+ @core.extern
749
+ @dispatch
750
+ def fast_log10f(arg0, _builder=None):
751
+ ...
752
+
753
+
754
+ @core.extern
755
+ @dispatch
756
+ def fast_powf(arg0, arg1, _builder=None):
757
+ ...
758
+
759
+
760
+ @core.extern
761
+ @dispatch
762
+ def hadd(arg0, arg1, _builder=None):
763
+ ...
764
+
765
+
766
+ @core.extern
767
+ @dispatch
768
+ def rhadd(arg0, arg1, _builder=None):
769
+ ...
770
+
771
+
772
+ @core.extern
773
+ @dispatch
774
+ def sub_rn(arg0, arg1, _builder=None):
775
+ ...
776
+
777
+
778
+ @core.extern
779
+ @dispatch
780
+ def sub_rz(arg0, arg1, _builder=None):
781
+ ...
782
+
783
+
784
+ @core.extern
785
+ @dispatch
786
+ def sub_rd(arg0, arg1, _builder=None):
787
+ ...
788
+
789
+
790
+ @core.extern
791
+ @dispatch
792
+ def sub_ru(arg0, arg1, _builder=None):
793
+ ...
794
+
795
+
796
+ @core.extern
797
+ @dispatch
798
+ def rsqrt_rn(arg0, _builder=None):
799
+ ...
800
+
801
+
802
+ @core.extern
803
+ @dispatch
804
+ def ffs(arg0, _builder=None):
805
+ ...
806
+
807
+
808
+ @core.extern
809
+ @dispatch
810
+ def rint(arg0, _builder=None):
811
+ ...
812
+
813
+
814
+ @core.extern
815
+ @dispatch
816
+ def llrint(arg0, _builder=None):
817
+ ...
818
+
819
+
820
+ @core.extern
821
+ @dispatch
822
+ def nearbyint(arg0, _builder=None):
823
+ ...
824
+
825
+
826
+ @core.extern
827
+ @dispatch
828
+ def isnan(arg0, _builder=None):
829
+ ...
830
+
831
+
832
+ @core.extern
833
+ @dispatch
834
+ def signbit(arg0, _builder=None):
835
+ ...
836
+
837
+
838
+ @core.extern
839
+ @dispatch
840
+ def copysign(arg0, arg1, _builder=None):
841
+ ...
842
+
843
+
844
+ @core.extern
845
+ @dispatch
846
+ def finitef(arg0, _builder=None):
847
+ ...
848
+
849
+
850
+ @core.extern
851
+ @dispatch
852
+ def isinf(arg0, _builder=None):
853
+ ...
854
+
855
+
856
+ @core.extern
857
+ @dispatch
858
+ def nextafter(arg0, arg1, _builder=None):
859
+ ...
860
+
861
+
862
+ @core.extern
863
+ @dispatch
864
+ def sin(arg0, _builder=None):
865
+ ...
866
+
867
+
868
+ @core.extern
869
+ @dispatch
870
+ def cos(arg0, _builder=None):
871
+ ...
872
+
873
+
874
+ @core.extern
875
+ @dispatch
876
+ def sinpi(arg0, _builder=None):
877
+ ...
878
+
879
+
880
+ @core.extern
881
+ @dispatch
882
+ def cospi(arg0, _builder=None):
883
+ ...
884
+
885
+
886
+ @core.extern
887
+ @dispatch
888
+ def tan(arg0, _builder=None):
889
+ ...
890
+
891
+
892
+ @core.extern
893
+ @dispatch
894
+ def log2(arg0, _builder=None):
895
+ ...
896
+
897
+
898
+ @core.extern
899
+ @dispatch
900
+ def exp(arg0, _builder=None):
901
+ ...
902
+
903
+
904
+ @core.extern
905
+ @dispatch
906
+ def exp10(arg0, _builder=None):
907
+ ...
908
+
909
+
910
+ @core.extern
911
+ @dispatch
912
+ def cosh(arg0, _builder=None):
913
+ ...
914
+
915
+
916
+ @core.extern
917
+ @dispatch
918
+ def sinh(arg0, _builder=None):
919
+ ...
920
+
921
+
922
+ @core.extern
923
+ @dispatch
924
+ def tanh(arg0, _builder=None):
925
+ ...
926
+
927
+
928
+ @core.extern
929
+ @dispatch
930
+ def atan2(arg0, arg1, _builder=None):
931
+ ...
932
+
933
+
934
+ @core.extern
935
+ @dispatch
936
+ def atan(arg0, _builder=None):
937
+ ...
938
+
939
+
940
+ @core.extern
941
+ @dispatch
942
+ def asin(arg0, _builder=None):
943
+ ...
944
+
945
+
946
+ @core.extern
947
+ @dispatch
948
+ def acos(arg0, _builder=None):
949
+ ...
950
+
951
+
952
+ @core.extern
953
+ @dispatch
954
+ def log(arg0, _builder=None):
955
+ ...
956
+
957
+
958
+ @core.extern
959
+ @dispatch
960
+ def log10(arg0, _builder=None):
961
+ ...
962
+
963
+
964
+ @core.extern
965
+ @dispatch
966
+ def log1p(arg0, _builder=None):
967
+ ...
968
+
969
+
970
+ @core.extern
971
+ @dispatch
972
+ def acosh(arg0, _builder=None):
973
+ ...
974
+
975
+
976
+ @core.extern
977
+ @dispatch
978
+ def asinh(arg0, _builder=None):
979
+ ...
980
+
981
+
982
+ @core.extern
983
+ @dispatch
984
+ def atanh(arg0, _builder=None):
985
+ ...
986
+
987
+
988
+ @core.extern
989
+ @dispatch
990
+ def expm1(arg0, _builder=None):
991
+ ...
992
+
993
+
994
+ @core.extern
995
+ @dispatch
996
+ def hypot(arg0, arg1, _builder=None):
997
+ ...
998
+
999
+
1000
+ @core.extern
1001
+ @dispatch
1002
+ def rhypot(arg0, arg1, _builder=None):
1003
+ ...
1004
+
1005
+
1006
+ @core.extern
1007
+ @dispatch
1008
+ def norm3d(arg0, arg1, arg2, _builder=None):
1009
+ ...
1010
+
1011
+
1012
+ @core.extern
1013
+ @dispatch
1014
+ def rnorm3d(arg0, arg1, arg2, _builder=None):
1015
+ ...
1016
+
1017
+
1018
+ @core.extern
1019
+ @dispatch
1020
+ def norm4d(arg0, arg1, arg2, arg3, _builder=None):
1021
+ ...
1022
+
1023
+
1024
+ @core.extern
1025
+ @dispatch
1026
+ def rnorm4d(arg0, arg1, arg2, arg3, _builder=None):
1027
+ ...
1028
+
1029
+
1030
+ @core.extern
1031
+ @dispatch
1032
+ def cbrt(arg0, _builder=None):
1033
+ ...
1034
+
1035
+
1036
+ @core.extern
1037
+ @dispatch
1038
+ def rcbrt(arg0, _builder=None):
1039
+ ...
1040
+
1041
+
1042
+ @core.extern
1043
+ @dispatch
1044
+ def j0(arg0, _builder=None):
1045
+ ...
1046
+
1047
+
1048
+ @core.extern
1049
+ @dispatch
1050
+ def j1(arg0, _builder=None):
1051
+ ...
1052
+
1053
+
1054
+ @core.extern
1055
+ @dispatch
1056
+ def y0(arg0, _builder=None):
1057
+ ...
1058
+
1059
+
1060
+ @core.extern
1061
+ @dispatch
1062
+ def y1(arg0, _builder=None):
1063
+ ...
1064
+
1065
+
1066
+ @core.extern
1067
+ @dispatch
1068
+ def yn(arg0, arg1, _builder=None):
1069
+ ...
1070
+
1071
+
1072
+ @core.extern
1073
+ @dispatch
1074
+ def jn(arg0, arg1, _builder=None):
1075
+ ...
1076
+
1077
+
1078
+ @core.extern
1079
+ @dispatch
1080
+ def cyl_bessel_i0(arg0, _builder=None):
1081
+ ...
1082
+
1083
+
1084
+ @core.extern
1085
+ @dispatch
1086
+ def cyl_bessel_i1(arg0, _builder=None):
1087
+ ...
1088
+
1089
+
1090
+ @core.extern
1091
+ @dispatch
1092
+ def erf(arg0, _builder=None):
1093
+ ...
1094
+
1095
+
1096
+ @core.extern
1097
+ @dispatch
1098
+ def erfinv(arg0, _builder=None):
1099
+ ...
1100
+
1101
+
1102
+ @core.extern
1103
+ @dispatch
1104
+ def erfc(arg0, _builder=None):
1105
+ ...
1106
+
1107
+
1108
+ @core.extern
1109
+ @dispatch
1110
+ def erfcx(arg0, _builder=None):
1111
+ ...
1112
+
1113
+
1114
+ @core.extern
1115
+ @dispatch
1116
+ def erfcinv(arg0, _builder=None):
1117
+ ...
1118
+
1119
+
1120
+ @core.extern
1121
+ @dispatch
1122
+ def normcdfinv(arg0, _builder=None):
1123
+ ...
1124
+
1125
+
1126
+ @core.extern
1127
+ @dispatch
1128
+ def normcdf(arg0, _builder=None):
1129
+ ...
1130
+
1131
+
1132
+ @core.extern
1133
+ @dispatch
1134
+ def lgamma(arg0, _builder=None):
1135
+ ...
1136
+
1137
+
1138
+ @core.extern
1139
+ @dispatch
1140
+ def ldexp(arg0, arg1, _builder=None):
1141
+ ...
1142
+
1143
+
1144
+ @core.extern
1145
+ @dispatch
1146
+ def scalbn(arg0, arg1, _builder=None):
1147
+ ...
1148
+
1149
+
1150
+ @core.extern
1151
+ @dispatch
1152
+ def fmod(arg0, arg1, _builder=None):
1153
+ ...
1154
+
1155
+
1156
+ @core.extern
1157
+ @dispatch
1158
+ def remainder(arg0, arg1, _builder=None):
1159
+ ...
1160
+
1161
+
1162
+ @core.extern
1163
+ @dispatch
1164
+ def fma(arg0, arg1, arg2, _builder=None):
1165
+ ...
1166
+
1167
+
1168
+ @core.extern
1169
+ @dispatch
1170
+ def pow(arg0, arg1, _builder=None):
1171
+ ...
1172
+
1173
+
1174
+ @core.extern
1175
+ @dispatch
1176
+ def tgamma(arg0, _builder=None):
1177
+ ...
1178
+
1179
+
1180
+ @core.extern
1181
+ @dispatch
1182
+ def round(arg0, _builder=None):
1183
+ ...
1184
+
1185
+
1186
+ @core.extern
1187
+ @dispatch
1188
+ def llround(arg0, _builder=None):
1189
+ ...
1190
+
1191
+
1192
+ @core.extern
1193
+ @dispatch
1194
+ def fdim(arg0, arg1, _builder=None):
1195
+ ...
1196
+
1197
+
1198
+ @core.extern
1199
+ @dispatch
1200
+ def ilogb(arg0, _builder=None):
1201
+ ...
1202
+
1203
+
1204
+ @core.extern
1205
+ @dispatch
1206
+ def logb(arg0, _builder=None):
1207
+ ...
1208
+
1209
+
1210
+ @core.extern
1211
+ @dispatch
1212
+ def isfinited(arg0, _builder=None):
1213
+ ...