triton-windows 3.5.1.post21__cp313-cp313-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.
Files changed (217) hide show
  1. triton/_C/libtriton.pyd +0 -0
  2. triton/__init__.py +82 -0
  3. triton/_filecheck.py +97 -0
  4. triton/_internal_testing.py +255 -0
  5. triton/_utils.py +126 -0
  6. triton/backends/__init__.py +47 -0
  7. triton/backends/amd/__init__.py +0 -0
  8. triton/backends/amd/compiler.py +461 -0
  9. triton/backends/amd/driver.c +283 -0
  10. triton/backends/amd/driver.py +724 -0
  11. triton/backends/amd/lib/asanrtl.bc +0 -0
  12. triton/backends/amd/lib/ockl.bc +0 -0
  13. triton/backends/amd/lib/ocml.bc +0 -0
  14. triton/backends/compiler.py +90 -0
  15. triton/backends/driver.py +66 -0
  16. triton/backends/nvidia/__init__.py +0 -0
  17. triton/backends/nvidia/bin/ptxas.exe +0 -0
  18. triton/backends/nvidia/compiler.py +533 -0
  19. triton/backends/nvidia/driver.c +517 -0
  20. triton/backends/nvidia/driver.py +799 -0
  21. triton/backends/nvidia/include/cuda.h +26280 -0
  22. triton/backends/nvidia/lib/libdevice.10.bc +0 -0
  23. triton/backends/nvidia/lib/x64/cuda.lib +0 -0
  24. triton/compiler/__init__.py +7 -0
  25. triton/compiler/code_generator.py +1614 -0
  26. triton/compiler/compiler.py +509 -0
  27. triton/compiler/errors.py +51 -0
  28. triton/compiler/make_launcher.py +0 -0
  29. triton/errors.py +5 -0
  30. triton/experimental/__init__.py +0 -0
  31. triton/experimental/gluon/__init__.py +5 -0
  32. triton/experimental/gluon/_compiler.py +0 -0
  33. triton/experimental/gluon/_runtime.py +102 -0
  34. triton/experimental/gluon/language/__init__.py +119 -0
  35. triton/experimental/gluon/language/_core.py +490 -0
  36. triton/experimental/gluon/language/_layouts.py +583 -0
  37. triton/experimental/gluon/language/_math.py +20 -0
  38. triton/experimental/gluon/language/_semantic.py +380 -0
  39. triton/experimental/gluon/language/_standard.py +80 -0
  40. triton/experimental/gluon/language/amd/__init__.py +4 -0
  41. triton/experimental/gluon/language/amd/_layouts.py +96 -0
  42. triton/experimental/gluon/language/amd/cdna3/__init__.py +100 -0
  43. triton/experimental/gluon/language/amd/cdna4/__init__.py +48 -0
  44. triton/experimental/gluon/language/amd/cdna4/async_copy.py +151 -0
  45. triton/experimental/gluon/language/extra/__init__.py +3 -0
  46. triton/experimental/gluon/language/nvidia/__init__.py +4 -0
  47. triton/experimental/gluon/language/nvidia/ampere/__init__.py +3 -0
  48. triton/experimental/gluon/language/nvidia/ampere/async_copy.py +74 -0
  49. triton/experimental/gluon/language/nvidia/ampere/mbarrier.py +80 -0
  50. triton/experimental/gluon/language/nvidia/blackwell/__init__.py +387 -0
  51. triton/experimental/gluon/language/nvidia/blackwell/tma.py +52 -0
  52. triton/experimental/gluon/language/nvidia/hopper/__init__.py +132 -0
  53. triton/experimental/gluon/language/nvidia/hopper/mbarrier.py +34 -0
  54. triton/experimental/gluon/language/nvidia/hopper/tma.py +97 -0
  55. triton/experimental/gluon/nvidia/__init__.py +4 -0
  56. triton/experimental/gluon/nvidia/blackwell.py +3 -0
  57. triton/experimental/gluon/nvidia/hopper.py +45 -0
  58. triton/knobs.py +546 -0
  59. triton/language/__init__.py +342 -0
  60. triton/language/core.py +3405 -0
  61. triton/language/extra/__init__.py +26 -0
  62. triton/language/extra/cuda/__init__.py +16 -0
  63. triton/language/extra/cuda/gdc.py +42 -0
  64. triton/language/extra/cuda/libdevice.py +1629 -0
  65. triton/language/extra/cuda/utils.py +109 -0
  66. triton/language/extra/hip/__init__.py +5 -0
  67. triton/language/extra/hip/libdevice.py +491 -0
  68. triton/language/extra/hip/utils.py +35 -0
  69. triton/language/extra/libdevice.py +790 -0
  70. triton/language/math.py +249 -0
  71. triton/language/random.py +218 -0
  72. triton/language/semantic.py +1939 -0
  73. triton/language/standard.py +534 -0
  74. triton/language/target_info.py +54 -0
  75. triton/runtime/__init__.py +23 -0
  76. triton/runtime/_allocation.py +44 -0
  77. triton/runtime/_async_compile.py +55 -0
  78. triton/runtime/autotuner.py +476 -0
  79. triton/runtime/build.py +168 -0
  80. triton/runtime/cache.py +317 -0
  81. triton/runtime/driver.py +38 -0
  82. triton/runtime/errors.py +36 -0
  83. triton/runtime/interpreter.py +1414 -0
  84. triton/runtime/jit.py +1107 -0
  85. triton/runtime/tcc/include/_mingw.h +168 -0
  86. triton/runtime/tcc/include/assert.h +62 -0
  87. triton/runtime/tcc/include/conio.h +409 -0
  88. triton/runtime/tcc/include/ctype.h +281 -0
  89. triton/runtime/tcc/include/dir.h +31 -0
  90. triton/runtime/tcc/include/direct.h +68 -0
  91. triton/runtime/tcc/include/dirent.h +135 -0
  92. triton/runtime/tcc/include/dos.h +55 -0
  93. triton/runtime/tcc/include/errno.h +75 -0
  94. triton/runtime/tcc/include/excpt.h +123 -0
  95. triton/runtime/tcc/include/fcntl.h +52 -0
  96. triton/runtime/tcc/include/fenv.h +108 -0
  97. triton/runtime/tcc/include/float.h +75 -0
  98. triton/runtime/tcc/include/inttypes.h +297 -0
  99. triton/runtime/tcc/include/io.h +418 -0
  100. triton/runtime/tcc/include/iso646.h +36 -0
  101. triton/runtime/tcc/include/limits.h +116 -0
  102. triton/runtime/tcc/include/locale.h +91 -0
  103. triton/runtime/tcc/include/malloc.h +181 -0
  104. triton/runtime/tcc/include/math.h +497 -0
  105. triton/runtime/tcc/include/mem.h +13 -0
  106. triton/runtime/tcc/include/memory.h +40 -0
  107. triton/runtime/tcc/include/process.h +176 -0
  108. triton/runtime/tcc/include/sec_api/conio_s.h +42 -0
  109. triton/runtime/tcc/include/sec_api/crtdbg_s.h +19 -0
  110. triton/runtime/tcc/include/sec_api/io_s.h +33 -0
  111. triton/runtime/tcc/include/sec_api/mbstring_s.h +52 -0
  112. triton/runtime/tcc/include/sec_api/search_s.h +25 -0
  113. triton/runtime/tcc/include/sec_api/stdio_s.h +145 -0
  114. triton/runtime/tcc/include/sec_api/stdlib_s.h +67 -0
  115. triton/runtime/tcc/include/sec_api/stralign_s.h +30 -0
  116. triton/runtime/tcc/include/sec_api/string_s.h +41 -0
  117. triton/runtime/tcc/include/sec_api/sys/timeb_s.h +34 -0
  118. triton/runtime/tcc/include/sec_api/tchar_s.h +266 -0
  119. triton/runtime/tcc/include/sec_api/time_s.h +61 -0
  120. triton/runtime/tcc/include/sec_api/wchar_s.h +128 -0
  121. triton/runtime/tcc/include/setjmp.h +160 -0
  122. triton/runtime/tcc/include/share.h +28 -0
  123. triton/runtime/tcc/include/signal.h +63 -0
  124. triton/runtime/tcc/include/stdalign.h +16 -0
  125. triton/runtime/tcc/include/stdarg.h +14 -0
  126. triton/runtime/tcc/include/stdatomic.h +171 -0
  127. triton/runtime/tcc/include/stdbool.h +11 -0
  128. triton/runtime/tcc/include/stddef.h +42 -0
  129. triton/runtime/tcc/include/stdint.h +212 -0
  130. triton/runtime/tcc/include/stdio.h +429 -0
  131. triton/runtime/tcc/include/stdlib.h +591 -0
  132. triton/runtime/tcc/include/stdnoreturn.h +7 -0
  133. triton/runtime/tcc/include/string.h +164 -0
  134. triton/runtime/tcc/include/sys/fcntl.h +13 -0
  135. triton/runtime/tcc/include/sys/file.h +14 -0
  136. triton/runtime/tcc/include/sys/locking.h +30 -0
  137. triton/runtime/tcc/include/sys/stat.h +290 -0
  138. triton/runtime/tcc/include/sys/time.h +69 -0
  139. triton/runtime/tcc/include/sys/timeb.h +133 -0
  140. triton/runtime/tcc/include/sys/types.h +123 -0
  141. triton/runtime/tcc/include/sys/unistd.h +14 -0
  142. triton/runtime/tcc/include/sys/utime.h +146 -0
  143. triton/runtime/tcc/include/tcc/tcc_libm.h +618 -0
  144. triton/runtime/tcc/include/tccdefs.h +342 -0
  145. triton/runtime/tcc/include/tcclib.h +80 -0
  146. triton/runtime/tcc/include/tchar.h +1102 -0
  147. triton/runtime/tcc/include/tgmath.h +89 -0
  148. triton/runtime/tcc/include/time.h +287 -0
  149. triton/runtime/tcc/include/uchar.h +33 -0
  150. triton/runtime/tcc/include/unistd.h +1 -0
  151. triton/runtime/tcc/include/vadefs.h +11 -0
  152. triton/runtime/tcc/include/values.h +4 -0
  153. triton/runtime/tcc/include/varargs.h +12 -0
  154. triton/runtime/tcc/include/wchar.h +873 -0
  155. triton/runtime/tcc/include/wctype.h +172 -0
  156. triton/runtime/tcc/include/winapi/basetsd.h +149 -0
  157. triton/runtime/tcc/include/winapi/basetyps.h +85 -0
  158. triton/runtime/tcc/include/winapi/guiddef.h +156 -0
  159. triton/runtime/tcc/include/winapi/poppack.h +8 -0
  160. triton/runtime/tcc/include/winapi/pshpack1.h +8 -0
  161. triton/runtime/tcc/include/winapi/pshpack2.h +8 -0
  162. triton/runtime/tcc/include/winapi/pshpack4.h +8 -0
  163. triton/runtime/tcc/include/winapi/pshpack8.h +8 -0
  164. triton/runtime/tcc/include/winapi/qos.h +72 -0
  165. triton/runtime/tcc/include/winapi/shellapi.h +59 -0
  166. triton/runtime/tcc/include/winapi/winbase.h +2958 -0
  167. triton/runtime/tcc/include/winapi/wincon.h +309 -0
  168. triton/runtime/tcc/include/winapi/windef.h +293 -0
  169. triton/runtime/tcc/include/winapi/windows.h +127 -0
  170. triton/runtime/tcc/include/winapi/winerror.h +3166 -0
  171. triton/runtime/tcc/include/winapi/wingdi.h +4080 -0
  172. triton/runtime/tcc/include/winapi/winnls.h +778 -0
  173. triton/runtime/tcc/include/winapi/winnt.h +5837 -0
  174. triton/runtime/tcc/include/winapi/winreg.h +272 -0
  175. triton/runtime/tcc/include/winapi/winsock2.h +1474 -0
  176. triton/runtime/tcc/include/winapi/winuser.h +5651 -0
  177. triton/runtime/tcc/include/winapi/winver.h +160 -0
  178. triton/runtime/tcc/include/winapi/ws2ipdef.h +21 -0
  179. triton/runtime/tcc/include/winapi/ws2tcpip.h +391 -0
  180. triton/runtime/tcc/lib/cuda.def +697 -0
  181. triton/runtime/tcc/lib/gdi32.def +337 -0
  182. triton/runtime/tcc/lib/kernel32.def +770 -0
  183. triton/runtime/tcc/lib/libtcc1.a +0 -0
  184. triton/runtime/tcc/lib/msvcrt.def +1399 -0
  185. triton/runtime/tcc/lib/python3.def +810 -0
  186. triton/runtime/tcc/lib/python310.def +1610 -0
  187. triton/runtime/tcc/lib/python311.def +1633 -0
  188. triton/runtime/tcc/lib/python312.def +1703 -0
  189. triton/runtime/tcc/lib/python313.def +1651 -0
  190. triton/runtime/tcc/lib/python313t.def +1656 -0
  191. triton/runtime/tcc/lib/python314.def +1800 -0
  192. triton/runtime/tcc/lib/python314t.def +1809 -0
  193. triton/runtime/tcc/lib/python39.def +1644 -0
  194. triton/runtime/tcc/lib/python3t.def +905 -0
  195. triton/runtime/tcc/lib/user32.def +658 -0
  196. triton/runtime/tcc/libtcc.dll +0 -0
  197. triton/runtime/tcc/tcc.exe +0 -0
  198. triton/testing.py +543 -0
  199. triton/tools/__init__.py +0 -0
  200. triton/tools/build_extern.py +365 -0
  201. triton/tools/compile.py +210 -0
  202. triton/tools/disasm.py +143 -0
  203. triton/tools/extra/cuda/compile.c +70 -0
  204. triton/tools/extra/cuda/compile.h +14 -0
  205. triton/tools/extra/hip/compile.cpp +66 -0
  206. triton/tools/extra/hip/compile.h +13 -0
  207. triton/tools/link.py +322 -0
  208. triton/tools/mxfp.py +301 -0
  209. triton/tools/ragged_tma.py +92 -0
  210. triton/tools/tensor_descriptor.py +34 -0
  211. triton/windows_utils.py +405 -0
  212. triton_windows-3.5.1.post21.dist-info/METADATA +46 -0
  213. triton_windows-3.5.1.post21.dist-info/RECORD +217 -0
  214. triton_windows-3.5.1.post21.dist-info/WHEEL +5 -0
  215. triton_windows-3.5.1.post21.dist-info/entry_points.txt +3 -0
  216. triton_windows-3.5.1.post21.dist-info/licenses/LICENSE +23 -0
  217. triton_windows-3.5.1.post21.dist-info/top_level.txt +1 -0
@@ -0,0 +1,790 @@
1
+ def clz(arg0):
2
+ ...
3
+
4
+
5
+ def popc(arg0):
6
+ ...
7
+
8
+
9
+ def byte_perm(arg0, arg1, arg2):
10
+ ...
11
+
12
+
13
+ def mulhi(arg0, arg1):
14
+ ...
15
+
16
+
17
+ def mul24(arg0, arg1):
18
+ ...
19
+
20
+
21
+ def brev(arg0):
22
+ ...
23
+
24
+
25
+ def sad(arg0, arg1, arg2):
26
+ ...
27
+
28
+
29
+ def abs(arg0):
30
+ ...
31
+
32
+
33
+ def floor(arg0):
34
+ ...
35
+
36
+
37
+ def rcp64h(arg0):
38
+ ...
39
+
40
+
41
+ def rsqrt(arg0):
42
+ ...
43
+
44
+
45
+ def ceil(arg0):
46
+ ...
47
+
48
+
49
+ def trunc(arg0):
50
+ ...
51
+
52
+
53
+ def exp2(arg0):
54
+ ...
55
+
56
+
57
+ def saturatef(arg0):
58
+ ...
59
+
60
+
61
+ def fma_rn(arg0, arg1, arg2):
62
+ ...
63
+
64
+
65
+ def fma_rz(arg0, arg1, arg2):
66
+ ...
67
+
68
+
69
+ def fma_rd(arg0, arg1, arg2):
70
+ ...
71
+
72
+
73
+ def fma_ru(arg0, arg1, arg2):
74
+ ...
75
+
76
+
77
+ def fast_dividef(arg0, arg1):
78
+ ...
79
+
80
+
81
+ def div_rn(arg0, arg1):
82
+ ...
83
+
84
+
85
+ def div_rz(arg0, arg1):
86
+ ...
87
+
88
+
89
+ def div_rd(arg0, arg1):
90
+ ...
91
+
92
+
93
+ def div_ru(arg0, arg1):
94
+ ...
95
+
96
+
97
+ def rcp_rn(arg0):
98
+ ...
99
+
100
+
101
+ def rcp_rz(arg0):
102
+ ...
103
+
104
+
105
+ def rcp_rd(arg0):
106
+ ...
107
+
108
+
109
+ def rcp_ru(arg0):
110
+ ...
111
+
112
+
113
+ def sqrt_rn(arg0):
114
+ ...
115
+
116
+
117
+ def sqrt_rz(arg0):
118
+ ...
119
+
120
+
121
+ def sqrt_rd(arg0):
122
+ ...
123
+
124
+
125
+ def sqrt_ru(arg0):
126
+ ...
127
+
128
+
129
+ def sqrt(arg0):
130
+ ...
131
+
132
+
133
+ def add_rn(arg0, arg1):
134
+ ...
135
+
136
+
137
+ def add_rz(arg0, arg1):
138
+ ...
139
+
140
+
141
+ def add_rd(arg0, arg1):
142
+ ...
143
+
144
+
145
+ def add_ru(arg0, arg1):
146
+ ...
147
+
148
+
149
+ def mul_rn(arg0, arg1):
150
+ ...
151
+
152
+
153
+ def mul_rz(arg0, arg1):
154
+ ...
155
+
156
+
157
+ def mul_rd(arg0, arg1):
158
+ ...
159
+
160
+
161
+ def mul_ru(arg0, arg1):
162
+ ...
163
+
164
+
165
+ def double2float_rn(arg0):
166
+ ...
167
+
168
+
169
+ def double2float_rz(arg0):
170
+ ...
171
+
172
+
173
+ def double2float_rd(arg0):
174
+ ...
175
+
176
+
177
+ def double2float_ru(arg0):
178
+ ...
179
+
180
+
181
+ def double2int_rn(arg0):
182
+ ...
183
+
184
+
185
+ def double2int_rz(arg0):
186
+ ...
187
+
188
+
189
+ def double2int_rd(arg0):
190
+ ...
191
+
192
+
193
+ def double2int_ru(arg0):
194
+ ...
195
+
196
+
197
+ def double2uint_rn(arg0):
198
+ ...
199
+
200
+
201
+ def double2uint_rz(arg0):
202
+ ...
203
+
204
+
205
+ def double2uint_rd(arg0):
206
+ ...
207
+
208
+
209
+ def double2uint_ru(arg0):
210
+ ...
211
+
212
+
213
+ def int2double_rn(arg0):
214
+ ...
215
+
216
+
217
+ def uint2double_rn(arg0):
218
+ ...
219
+
220
+
221
+ def float2int_rn(arg0):
222
+ ...
223
+
224
+
225
+ def float2int_rz(arg0):
226
+ ...
227
+
228
+
229
+ def float2int_rd(arg0):
230
+ ...
231
+
232
+
233
+ def float2int_ru(arg0):
234
+ ...
235
+
236
+
237
+ def float2uint_rn(arg0):
238
+ ...
239
+
240
+
241
+ def float2uint_rz(arg0):
242
+ ...
243
+
244
+
245
+ def float2uint_rd(arg0):
246
+ ...
247
+
248
+
249
+ def float2uint_ru(arg0):
250
+ ...
251
+
252
+
253
+ def int2float_rn(arg0):
254
+ ...
255
+
256
+
257
+ def int2float_rz(arg0):
258
+ ...
259
+
260
+
261
+ def int2float_rd(arg0):
262
+ ...
263
+
264
+
265
+ def int2float_ru(arg0):
266
+ ...
267
+
268
+
269
+ def uint2float_rn(arg0):
270
+ ...
271
+
272
+
273
+ def uint2float_rz(arg0):
274
+ ...
275
+
276
+
277
+ def uint2float_rd(arg0):
278
+ ...
279
+
280
+
281
+ def uint2float_ru(arg0):
282
+ ...
283
+
284
+
285
+ def hiloint2double(arg0, arg1):
286
+ ...
287
+
288
+
289
+ def double2loint(arg0):
290
+ ...
291
+
292
+
293
+ def double2hiint(arg0):
294
+ ...
295
+
296
+
297
+ def float2ll_rn(arg0):
298
+ ...
299
+
300
+
301
+ def float2ll_rz(arg0):
302
+ ...
303
+
304
+
305
+ def float2ll_rd(arg0):
306
+ ...
307
+
308
+
309
+ def float2ll_ru(arg0):
310
+ ...
311
+
312
+
313
+ def float2ull_rn(arg0):
314
+ ...
315
+
316
+
317
+ def float2ull_rz(arg0):
318
+ ...
319
+
320
+
321
+ def float2ull_rd(arg0):
322
+ ...
323
+
324
+
325
+ def float2ull_ru(arg0):
326
+ ...
327
+
328
+
329
+ def double2ll_rn(arg0):
330
+ ...
331
+
332
+
333
+ def double2ll_rz(arg0):
334
+ ...
335
+
336
+
337
+ def double2ll_rd(arg0):
338
+ ...
339
+
340
+
341
+ def double2ll_ru(arg0):
342
+ ...
343
+
344
+
345
+ def double2ull_rn(arg0):
346
+ ...
347
+
348
+
349
+ def double2ull_rz(arg0):
350
+ ...
351
+
352
+
353
+ def double2ull_rd(arg0):
354
+ ...
355
+
356
+
357
+ def double2ull_ru(arg0):
358
+ ...
359
+
360
+
361
+ def ll2float_rn(arg0):
362
+ ...
363
+
364
+
365
+ def ll2float_rz(arg0):
366
+ ...
367
+
368
+
369
+ def ll2float_rd(arg0):
370
+ ...
371
+
372
+
373
+ def ll2float_ru(arg0):
374
+ ...
375
+
376
+
377
+ def ull2float_rn(arg0):
378
+ ...
379
+
380
+
381
+ def ull2float_rz(arg0):
382
+ ...
383
+
384
+
385
+ def ull2float_rd(arg0):
386
+ ...
387
+
388
+
389
+ def ull2float_ru(arg0):
390
+ ...
391
+
392
+
393
+ def ll2double_rn(arg0):
394
+ ...
395
+
396
+
397
+ def ll2double_rz(arg0):
398
+ ...
399
+
400
+
401
+ def ll2double_rd(arg0):
402
+ ...
403
+
404
+
405
+ def ll2double_ru(arg0):
406
+ ...
407
+
408
+
409
+ def ull2double_rn(arg0):
410
+ ...
411
+
412
+
413
+ def ull2double_rz(arg0):
414
+ ...
415
+
416
+
417
+ def ull2double_rd(arg0):
418
+ ...
419
+
420
+
421
+ def ull2double_ru(arg0):
422
+ ...
423
+
424
+
425
+ def int_as_float(arg0):
426
+ ...
427
+
428
+
429
+ def float_as_int(arg0):
430
+ ...
431
+
432
+
433
+ def uint_as_float(arg0):
434
+ ...
435
+
436
+
437
+ def float_as_uint(arg0):
438
+ ...
439
+
440
+
441
+ def longlong_as_double(arg0):
442
+ ...
443
+
444
+
445
+ def double_as_longlong(arg0):
446
+ ...
447
+
448
+
449
+ def fast_sinf(arg0):
450
+ ...
451
+
452
+
453
+ def fast_cosf(arg0):
454
+ ...
455
+
456
+
457
+ def fast_log2f(arg0):
458
+ ...
459
+
460
+
461
+ def fast_logf(arg0):
462
+ ...
463
+
464
+
465
+ def fast_expf(arg0):
466
+ ...
467
+
468
+
469
+ def fast_tanhf(arg0):
470
+ ...
471
+
472
+
473
+ def fast_tanf(arg0):
474
+ ...
475
+
476
+
477
+ def fast_exp10f(arg0):
478
+ ...
479
+
480
+
481
+ def fast_log10f(arg0):
482
+ ...
483
+
484
+
485
+ def fast_powf(arg0, arg1):
486
+ ...
487
+
488
+
489
+ def hadd(arg0, arg1):
490
+ ...
491
+
492
+
493
+ def rhadd(arg0, arg1):
494
+ ...
495
+
496
+
497
+ def sub_rn(arg0, arg1):
498
+ ...
499
+
500
+
501
+ def sub_rz(arg0, arg1):
502
+ ...
503
+
504
+
505
+ def sub_rd(arg0, arg1):
506
+ ...
507
+
508
+
509
+ def sub_ru(arg0, arg1):
510
+ ...
511
+
512
+
513
+ def rsqrt_rn(arg0):
514
+ ...
515
+
516
+
517
+ def ffs(arg0):
518
+ ...
519
+
520
+
521
+ def rint(arg0):
522
+ ...
523
+
524
+
525
+ def llrint(arg0):
526
+ ...
527
+
528
+
529
+ def nearbyint(arg0):
530
+ ...
531
+
532
+
533
+ def isnan(arg0):
534
+ ...
535
+
536
+
537
+ def signbit(arg0):
538
+ ...
539
+
540
+
541
+ def copysign(arg0, arg1):
542
+ ...
543
+
544
+
545
+ def finitef(arg0):
546
+ ...
547
+
548
+
549
+ def isinf(arg0):
550
+ ...
551
+
552
+
553
+ def nextafter(arg0, arg1):
554
+ ...
555
+
556
+
557
+ def sin(arg0):
558
+ ...
559
+
560
+
561
+ def cos(arg0):
562
+ ...
563
+
564
+
565
+ def sinpi(arg0):
566
+ ...
567
+
568
+
569
+ def cospi(arg0):
570
+ ...
571
+
572
+
573
+ def tan(arg0):
574
+ ...
575
+
576
+
577
+ def log2(arg0):
578
+ ...
579
+
580
+
581
+ def exp(arg0):
582
+ ...
583
+
584
+
585
+ def exp10(arg0):
586
+ ...
587
+
588
+
589
+ def cosh(arg0):
590
+ ...
591
+
592
+
593
+ def sinh(arg0):
594
+ ...
595
+
596
+
597
+ def tanh(arg0):
598
+ ...
599
+
600
+
601
+ def atan2(arg0, arg1):
602
+ ...
603
+
604
+
605
+ def atan(arg0):
606
+ ...
607
+
608
+
609
+ def asin(arg0):
610
+ ...
611
+
612
+
613
+ def acos(arg0):
614
+ ...
615
+
616
+
617
+ def log(arg0):
618
+ ...
619
+
620
+
621
+ def log10(arg0):
622
+ ...
623
+
624
+
625
+ def log1p(arg0):
626
+ ...
627
+
628
+
629
+ def acosh(arg0):
630
+ ...
631
+
632
+
633
+ def asinh(arg0):
634
+ ...
635
+
636
+
637
+ def atanh(arg0):
638
+ ...
639
+
640
+
641
+ def expm1(arg0):
642
+ ...
643
+
644
+
645
+ def hypot(arg0, arg1):
646
+ ...
647
+
648
+
649
+ def rhypot(arg0, arg1):
650
+ ...
651
+
652
+
653
+ def norm3d(arg0, arg1, arg2):
654
+ ...
655
+
656
+
657
+ def rnorm3d(arg0, arg1, arg2):
658
+ ...
659
+
660
+
661
+ def norm4d(arg0, arg1, arg2, arg3):
662
+ ...
663
+
664
+
665
+ def rnorm4d(arg0, arg1, arg2, arg3):
666
+ ...
667
+
668
+
669
+ def cbrt(arg0):
670
+ ...
671
+
672
+
673
+ def rcbrt(arg0):
674
+ ...
675
+
676
+
677
+ def j0(arg0):
678
+ ...
679
+
680
+
681
+ def j1(arg0):
682
+ ...
683
+
684
+
685
+ def y0(arg0):
686
+ ...
687
+
688
+
689
+ def y1(arg0):
690
+ ...
691
+
692
+
693
+ def yn(arg0, arg1):
694
+ ...
695
+
696
+
697
+ def jn(arg0, arg1):
698
+ ...
699
+
700
+
701
+ def cyl_bessel_i0(arg0):
702
+ ...
703
+
704
+
705
+ def cyl_bessel_i1(arg0):
706
+ ...
707
+
708
+
709
+ def erf(arg0):
710
+ ...
711
+
712
+
713
+ def erfinv(arg0):
714
+ ...
715
+
716
+
717
+ def erfc(arg0):
718
+ ...
719
+
720
+
721
+ def erfcx(arg0):
722
+ ...
723
+
724
+
725
+ def erfcinv(arg0):
726
+ ...
727
+
728
+
729
+ def normcdfinv(arg0):
730
+ ...
731
+
732
+
733
+ def normcdf(arg0):
734
+ ...
735
+
736
+
737
+ def lgamma(arg0):
738
+ ...
739
+
740
+
741
+ def ldexp(arg0, arg1):
742
+ ...
743
+
744
+
745
+ def scalbn(arg0, arg1):
746
+ ...
747
+
748
+
749
+ def fmod(arg0, arg1):
750
+ ...
751
+
752
+
753
+ def remainder(arg0, arg1):
754
+ ...
755
+
756
+
757
+ def fma(arg0, arg1, arg2):
758
+ ...
759
+
760
+
761
+ def pow(arg0, arg1):
762
+ ...
763
+
764
+
765
+ def tgamma(arg0):
766
+ ...
767
+
768
+
769
+ def round(arg0):
770
+ ...
771
+
772
+
773
+ def llround(arg0):
774
+ ...
775
+
776
+
777
+ def fdim(arg0, arg1):
778
+ ...
779
+
780
+
781
+ def ilogb(arg0):
782
+ ...
783
+
784
+
785
+ def logb(arg0):
786
+ ...
787
+
788
+
789
+ def isfinited(arg0):
790
+ ...