triton-windows 3.3.0a0.post11__cp313-cp313-win_amd64.whl → 3.3.0a0.post13__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.
Potentially problematic release.
This version of triton-windows might be problematic. Click here for more details.
- triton/_C/libtriton.pyd +0 -0
- triton/__init__.py +0 -12
- triton/backends/nvidia/compiler.py +3 -1
- triton/backends/nvidia/driver.py +4 -4
- triton/compiler/compiler.py +4 -4
- triton/runtime/build.py +29 -10
- triton/runtime/tcc/include/_mingw.h +170 -0
- triton/runtime/tcc/include/assert.h +57 -0
- triton/runtime/tcc/include/conio.h +409 -0
- triton/runtime/tcc/include/ctype.h +281 -0
- triton/runtime/tcc/include/dir.h +31 -0
- triton/runtime/tcc/include/direct.h +68 -0
- triton/runtime/tcc/include/dirent.h +135 -0
- triton/runtime/tcc/include/dos.h +55 -0
- triton/runtime/tcc/include/errno.h +75 -0
- triton/runtime/tcc/include/excpt.h +123 -0
- triton/runtime/tcc/include/fcntl.h +52 -0
- triton/runtime/tcc/include/fenv.h +108 -0
- triton/runtime/tcc/include/float.h +57 -0
- triton/runtime/tcc/include/inttypes.h +297 -0
- triton/runtime/tcc/include/io.h +418 -0
- triton/runtime/tcc/include/limits.h +111 -0
- triton/runtime/tcc/include/locale.h +91 -0
- triton/runtime/tcc/include/malloc.h +181 -0
- triton/runtime/tcc/include/math.h +737 -0
- triton/runtime/tcc/include/mem.h +13 -0
- triton/runtime/tcc/include/memory.h +40 -0
- triton/runtime/tcc/include/process.h +176 -0
- triton/runtime/tcc/include/sec_api/conio_s.h +42 -0
- triton/runtime/tcc/include/sec_api/crtdbg_s.h +19 -0
- triton/runtime/tcc/include/sec_api/io_s.h +33 -0
- triton/runtime/tcc/include/sec_api/mbstring_s.h +52 -0
- triton/runtime/tcc/include/sec_api/search_s.h +25 -0
- triton/runtime/tcc/include/sec_api/stdio_s.h +145 -0
- triton/runtime/tcc/include/sec_api/stdlib_s.h +67 -0
- triton/runtime/tcc/include/sec_api/stralign_s.h +30 -0
- triton/runtime/tcc/include/sec_api/string_s.h +41 -0
- triton/runtime/tcc/include/sec_api/sys/timeb_s.h +34 -0
- triton/runtime/tcc/include/sec_api/tchar_s.h +266 -0
- triton/runtime/tcc/include/sec_api/time_s.h +61 -0
- triton/runtime/tcc/include/sec_api/wchar_s.h +128 -0
- triton/runtime/tcc/include/setjmp.h +160 -0
- triton/runtime/tcc/include/share.h +28 -0
- triton/runtime/tcc/include/signal.h +63 -0
- triton/runtime/tcc/include/stdarg.h +79 -0
- triton/runtime/tcc/include/stdbool.h +11 -0
- triton/runtime/tcc/include/stddef.h +54 -0
- triton/runtime/tcc/include/stdint.h +212 -0
- triton/runtime/tcc/include/stdio.h +429 -0
- triton/runtime/tcc/include/stdlib.h +580 -0
- triton/runtime/tcc/include/string.h +164 -0
- triton/runtime/tcc/include/sys/fcntl.h +13 -0
- triton/runtime/tcc/include/sys/file.h +14 -0
- triton/runtime/tcc/include/sys/locking.h +30 -0
- triton/runtime/tcc/include/sys/stat.h +290 -0
- triton/runtime/tcc/include/sys/time.h +69 -0
- triton/runtime/tcc/include/sys/timeb.h +133 -0
- triton/runtime/tcc/include/sys/types.h +118 -0
- triton/runtime/tcc/include/sys/unistd.h +14 -0
- triton/runtime/tcc/include/sys/utime.h +146 -0
- triton/runtime/tcc/include/tcc/tcc_libm.h +201 -0
- triton/runtime/tcc/include/tcclib.h +80 -0
- triton/runtime/tcc/include/tchar.h +1102 -0
- triton/runtime/tcc/include/time.h +287 -0
- triton/runtime/tcc/include/vadefs.h +11 -0
- triton/runtime/tcc/include/values.h +4 -0
- triton/runtime/tcc/include/varargs.h +12 -0
- triton/runtime/tcc/include/wchar.h +873 -0
- triton/runtime/tcc/include/wctype.h +172 -0
- triton/runtime/tcc/include/winapi/basetsd.h +149 -0
- triton/runtime/tcc/include/winapi/basetyps.h +85 -0
- triton/runtime/tcc/include/winapi/guiddef.h +156 -0
- triton/runtime/tcc/include/winapi/poppack.h +8 -0
- triton/runtime/tcc/include/winapi/pshpack1.h +8 -0
- triton/runtime/tcc/include/winapi/pshpack2.h +8 -0
- triton/runtime/tcc/include/winapi/pshpack4.h +8 -0
- triton/runtime/tcc/include/winapi/pshpack8.h +8 -0
- triton/runtime/tcc/include/winapi/winbase.h +2951 -0
- triton/runtime/tcc/include/winapi/wincon.h +301 -0
- triton/runtime/tcc/include/winapi/windef.h +293 -0
- triton/runtime/tcc/include/winapi/windows.h +127 -0
- triton/runtime/tcc/include/winapi/winerror.h +3166 -0
- triton/runtime/tcc/include/winapi/wingdi.h +4080 -0
- triton/runtime/tcc/include/winapi/winnt.h +5835 -0
- triton/runtime/tcc/include/winapi/winreg.h +272 -0
- triton/runtime/tcc/include/winapi/winuser.h +5651 -0
- triton/runtime/tcc/include/winapi/winver.h +160 -0
- triton/runtime/tcc/lib/cuda.def +697 -0
- triton/runtime/tcc/lib/gdi32.def +337 -0
- triton/runtime/tcc/lib/kernel32.def +770 -0
- triton/runtime/tcc/lib/libtcc1-64.a +0 -0
- triton/runtime/tcc/lib/msvcrt.def +1399 -0
- triton/runtime/tcc/lib/python3.def +810 -0
- triton/runtime/tcc/lib/user32.def +658 -0
- triton/runtime/tcc/libtcc.dll +0 -0
- triton/runtime/tcc/tcc.exe +0 -0
- triton/windows_utils.py +78 -80
- {triton_windows-3.3.0a0.post11.dist-info → triton_windows-3.3.0a0.post13.dist-info}/METADATA +1 -1
- {triton_windows-3.3.0a0.post11.dist-info → triton_windows-3.3.0a0.post13.dist-info}/RECORD +101 -11
- {triton_windows-3.3.0a0.post11.dist-info → triton_windows-3.3.0a0.post13.dist-info}/WHEEL +0 -0
- {triton_windows-3.3.0a0.post11.dist-info → triton_windows-3.3.0a0.post13.dist-info}/top_level.txt +0 -0
triton/windows_utils.py
CHANGED
|
@@ -4,6 +4,7 @@ import re
|
|
|
4
4
|
import subprocess
|
|
5
5
|
import sys
|
|
6
6
|
import sysconfig
|
|
7
|
+
import warnings
|
|
7
8
|
import winreg
|
|
8
9
|
from collections.abc import Iterable
|
|
9
10
|
from functools import partial
|
|
@@ -150,7 +151,7 @@ def find_msvc() -> tuple[list[str], list[str]]:
|
|
|
150
151
|
if msvc_base_path is None:
|
|
151
152
|
msvc_base_path, version = find_msvc_hardcoded()
|
|
152
153
|
if msvc_base_path is None:
|
|
153
|
-
|
|
154
|
+
warnings.warn("Failed to find MSVC.")
|
|
154
155
|
return [], []
|
|
155
156
|
|
|
156
157
|
return (
|
|
@@ -216,7 +217,7 @@ def find_winsdk() -> tuple[list[str], list[str]]:
|
|
|
216
217
|
if winsdk_base_path is None:
|
|
217
218
|
winsdk_base_path, version = find_winsdk_hardcoded()
|
|
218
219
|
if winsdk_base_path is None:
|
|
219
|
-
|
|
220
|
+
warnings.warn("Failed to find Windows SDK.")
|
|
220
221
|
return [], []
|
|
221
222
|
|
|
222
223
|
return (
|
|
@@ -250,126 +251,123 @@ def find_python() -> list[str]:
|
|
|
250
251
|
if (python_lib_dir / "python3.lib").exists():
|
|
251
252
|
return [str(python_lib_dir)]
|
|
252
253
|
|
|
253
|
-
|
|
254
|
+
warnings.warn("Failed to find Python libs.")
|
|
254
255
|
return []
|
|
255
256
|
|
|
256
257
|
|
|
257
|
-
def
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
258
|
+
def check_and_find_cuda(base_path: Path) -> tuple[Optional[str], list[str], list[str]]:
|
|
259
|
+
# pip
|
|
260
|
+
if all(
|
|
261
|
+
x.exists()
|
|
262
|
+
for x in [
|
|
263
|
+
base_path / "cuda_nvcc" / "bin" / "ptxas.exe",
|
|
264
|
+
base_path / "cuda_runtime" / "include" / "cuda.h",
|
|
265
|
+
base_path / "cuda_runtime" / "lib" / "x64" / "cuda.lib",
|
|
266
|
+
]
|
|
267
|
+
):
|
|
262
268
|
return (
|
|
263
|
-
str(
|
|
264
|
-
[str(
|
|
265
|
-
[str(
|
|
269
|
+
str(base_path / "cuda_nvcc" / "bin"),
|
|
270
|
+
[str(base_path / "cuda_runtime" / "include")],
|
|
271
|
+
[str(base_path / "cuda_runtime" / "lib" / "x64")],
|
|
266
272
|
)
|
|
267
273
|
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
def check_cuda_pip(nvidia_base_path: Path) -> bool:
|
|
272
|
-
return all(
|
|
274
|
+
# conda
|
|
275
|
+
if all(
|
|
273
276
|
x.exists()
|
|
274
277
|
for x in [
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
+
base_path / "bin" / "ptxas.exe",
|
|
279
|
+
base_path / "include" / "cuda.h",
|
|
280
|
+
base_path / "lib" / "cuda.lib",
|
|
278
281
|
]
|
|
279
|
-
)
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
def find_cuda_pip() -> tuple[Optional[str], list[str], list[str]]:
|
|
283
|
-
nvidia_base_path = Path(sysconfig.get_paths()["platlib"]) / "nvidia"
|
|
284
|
-
if check_cuda_pip(nvidia_base_path):
|
|
282
|
+
):
|
|
285
283
|
return (
|
|
286
|
-
str(
|
|
287
|
-
[str(
|
|
288
|
-
[str(
|
|
284
|
+
str(base_path / "bin"),
|
|
285
|
+
[str(base_path / "include")],
|
|
286
|
+
[str(base_path / "lib")],
|
|
289
287
|
)
|
|
290
288
|
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
def check_cuda_conda(cuda_base_path: Path) -> bool:
|
|
295
|
-
return all(
|
|
289
|
+
# bundled or system-wide
|
|
290
|
+
if all(
|
|
296
291
|
x.exists()
|
|
297
292
|
for x in [
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
293
|
+
base_path / "bin" / "ptxas.exe",
|
|
294
|
+
base_path / "include" / "cuda.h",
|
|
295
|
+
base_path / "lib" / "x64" / "cuda.lib",
|
|
301
296
|
]
|
|
302
|
-
)
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
def find_cuda_conda() -> tuple[Optional[str], list[str], list[str]]:
|
|
306
|
-
cuda_base_path = Path(sys.exec_prefix) / "Library"
|
|
307
|
-
if check_cuda_conda(cuda_base_path):
|
|
297
|
+
):
|
|
308
298
|
return (
|
|
309
|
-
str(
|
|
310
|
-
[str(
|
|
311
|
-
[str(
|
|
299
|
+
str(base_path / "bin"),
|
|
300
|
+
[str(base_path / "include")],
|
|
301
|
+
[str(base_path / "lib" / "x64")],
|
|
312
302
|
)
|
|
313
303
|
|
|
314
304
|
return None, [], []
|
|
315
305
|
|
|
316
306
|
|
|
317
|
-
def
|
|
318
|
-
return all(
|
|
319
|
-
x.exists()
|
|
320
|
-
for x in [
|
|
321
|
-
cuda_base_path / "bin" / "ptxas.exe",
|
|
322
|
-
cuda_base_path / "include" / "cuda.h",
|
|
323
|
-
cuda_base_path / "lib" / "x64" / "cuda.lib",
|
|
324
|
-
]
|
|
325
|
-
)
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
def find_cuda_env() -> Optional[Path]:
|
|
307
|
+
def find_cuda_env() -> tuple[Optional[str], list[str], list[str]]:
|
|
329
308
|
for cuda_base_path in ["CUDA_PATH", "CUDA_HOME"]:
|
|
330
309
|
cuda_base_path = os.getenv(cuda_base_path)
|
|
331
310
|
if cuda_base_path is None:
|
|
332
311
|
continue
|
|
333
312
|
|
|
334
313
|
cuda_base_path = Path(cuda_base_path)
|
|
335
|
-
|
|
336
|
-
|
|
314
|
+
cuda_bin_path, cuda_inc_dirs, cuda_lib_dirs = check_and_find_cuda(
|
|
315
|
+
cuda_base_path
|
|
316
|
+
)
|
|
317
|
+
if cuda_bin_path:
|
|
318
|
+
return cuda_bin_path, cuda_inc_dirs, cuda_lib_dirs
|
|
319
|
+
|
|
320
|
+
return None, [], []
|
|
337
321
|
|
|
338
|
-
return None
|
|
339
322
|
|
|
323
|
+
def find_cuda_bundled() -> tuple[Optional[str], list[str], list[str]]:
|
|
324
|
+
cuda_base_path = (
|
|
325
|
+
Path(sysconfig.get_paths()["platlib"]) / "triton" / "backends" / "nvidia"
|
|
326
|
+
)
|
|
327
|
+
return check_and_find_cuda(cuda_base_path)
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
def find_cuda_pip() -> tuple[Optional[str], list[str], list[str]]:
|
|
331
|
+
nvidia_base_path = Path(sysconfig.get_paths()["platlib"]) / "nvidia"
|
|
332
|
+
return check_and_find_cuda(nvidia_base_path)
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
def find_cuda_conda() -> tuple[Optional[str], list[str], list[str]]:
|
|
336
|
+
cuda_base_path = Path(sys.exec_prefix) / "Library"
|
|
337
|
+
return check_and_find_cuda(cuda_base_path)
|
|
340
338
|
|
|
341
|
-
|
|
339
|
+
|
|
340
|
+
def find_cuda_hardcoded() -> tuple[Optional[str], list[str], list[str]]:
|
|
342
341
|
parent = find_in_program_files(r"NVIDIA GPU Computing Toolkit\CUDA")
|
|
343
342
|
if parent is None:
|
|
344
|
-
return None
|
|
343
|
+
return None, [], []
|
|
345
344
|
|
|
346
345
|
paths = glob(str(parent / "v12*"))
|
|
347
346
|
# First try the highest version
|
|
348
347
|
paths = sorted(paths)[::-1]
|
|
349
|
-
for
|
|
350
|
-
cuda_base_path = Path(
|
|
351
|
-
|
|
352
|
-
|
|
348
|
+
for cuda_base_path in paths:
|
|
349
|
+
cuda_base_path = Path(cuda_base_path)
|
|
350
|
+
cuda_bin_path, cuda_inc_dirs, cuda_lib_dirs = check_and_find_cuda(
|
|
351
|
+
cuda_base_path
|
|
352
|
+
)
|
|
353
|
+
if cuda_bin_path:
|
|
354
|
+
return cuda_bin_path, cuda_inc_dirs, cuda_lib_dirs
|
|
353
355
|
|
|
354
|
-
return None
|
|
356
|
+
return None, [], []
|
|
355
357
|
|
|
356
358
|
|
|
357
359
|
@functools.cache
|
|
358
360
|
def find_cuda() -> tuple[Optional[str], list[str], list[str]]:
|
|
359
|
-
for f in [
|
|
361
|
+
for f in [
|
|
362
|
+
find_cuda_env,
|
|
363
|
+
find_cuda_bundled,
|
|
364
|
+
find_cuda_pip,
|
|
365
|
+
find_cuda_conda,
|
|
366
|
+
find_cuda_hardcoded,
|
|
367
|
+
]:
|
|
360
368
|
cuda_bin_path, cuda_inc_dirs, cuda_lib_dirs = f()
|
|
361
369
|
if cuda_bin_path:
|
|
362
370
|
return cuda_bin_path, cuda_inc_dirs, cuda_lib_dirs
|
|
363
371
|
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
cuda_base_path = find_cuda_hardcoded()
|
|
367
|
-
if cuda_base_path is None:
|
|
368
|
-
print("WARNING: Failed to find CUDA.")
|
|
369
|
-
return None, [], []
|
|
370
|
-
|
|
371
|
-
return (
|
|
372
|
-
str(cuda_base_path / "bin"),
|
|
373
|
-
[str(cuda_base_path / "include")],
|
|
374
|
-
[str(cuda_base_path / "lib" / "x64")],
|
|
375
|
-
)
|
|
372
|
+
warnings.warn("Failed to find CUDA.")
|
|
373
|
+
return None, [], []
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
triton/__init__.py,sha256=
|
|
1
|
+
triton/__init__.py,sha256=Ds-Fjin1KciAsmLIdxKA7nYRcOB0E7Cqy62bTy_7hP4,1392
|
|
2
2
|
triton/_internal_testing.py,sha256=OBY28huiEWItqGgiukgZzHLLaSbS8yj9kdhn_u562Yg,5904
|
|
3
3
|
triton/_utils.py,sha256=5RiCLwW14w0Q3mdZ-9yz-VO5KiSexNj9xeDt4gaNsvE,1014
|
|
4
4
|
triton/errors.py,sha256=8WfnuRKLG578mgY6cBA3ECruVMf9ULEKFNgRcJ6IhWM,89
|
|
5
5
|
triton/testing.py,sha256=ivFf1Fq9frmfVahaVUp0bgJxmvVZNACZfj3Sai6zfAs,20048
|
|
6
|
-
triton/windows_utils.py,sha256=
|
|
7
|
-
triton/_C/libtriton.pyd,sha256=
|
|
6
|
+
triton/windows_utils.py,sha256=aQMItmuZNXaki8zSB7HMvhy1RsXlmz1GcO-lORm1IIk,10852
|
|
7
|
+
triton/_C/libtriton.pyd,sha256=DCVyqu-jTQjB0H_Is-VtM1Wnnc9HIj6gFIsNJisz3uE,86837248
|
|
8
8
|
triton/backends/__init__.py,sha256=opAo_vgEMt3tLO_bYFrYGksnIu0qohbmyuu_s3-rNAs,1595
|
|
9
9
|
triton/backends/compiler.py,sha256=ymaG0kpveAuESbQ9QZ0RyXjr0Aq4el_G5XGYogJ2gNA,3588
|
|
10
10
|
triton/backends/driver.py,sha256=AN60upJlPgia0JwvZ8vIVgLITNPuI0fdz8zMIIHPpF4,1450
|
|
@@ -112,16 +112,16 @@ triton/backends/amd/lib/asanrtl.bc,sha256=1xv2RlU3WvbdsghHlmhwiHewGM2B5dKts5bERM
|
|
|
112
112
|
triton/backends/amd/lib/ockl.bc,sha256=wQKCzkKukIHbu0lyjKUYlhndc7S27xto6L54J0Bn-C0,246124
|
|
113
113
|
triton/backends/amd/lib/ocml.bc,sha256=UPNTXW0gCXUNB-c6orSYwb-mz9_mjUc7zny_vfFza44,205964
|
|
114
114
|
triton/backends/nvidia/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
|
-
triton/backends/nvidia/compiler.py,sha256=
|
|
115
|
+
triton/backends/nvidia/compiler.py,sha256=R0WKIM_JsMcd3nlwnrlB8pXPjyDj6egaaFxNwi2hneM,18588
|
|
116
116
|
triton/backends/nvidia/driver.c,sha256=-O-Q00SFcCHJiHvArIC7yB10Ma1W8jw7ORFKp7spxHE,18846
|
|
117
|
-
triton/backends/nvidia/driver.py,sha256=
|
|
117
|
+
triton/backends/nvidia/driver.py,sha256=9ZhZTs19M5IU4fAD4JBNhh24MYcP6QLmEMW3SfGgfAQ,20843
|
|
118
118
|
triton/backends/nvidia/bin/ptxas.exe,sha256=iCva9hIYg-Q2NybchwaQJFkwDzNiliFOTDdZrHPLb6A,24732160
|
|
119
119
|
triton/backends/nvidia/include/cuda.h,sha256=Fn44OjeRImxegJ39apYUspseEfTWNGwpqSGUOnHj5WY,1183268
|
|
120
120
|
triton/backends/nvidia/lib/libdevice.10.bc,sha256=XC-uN8huaMOjhgWpX1EtfRLV89uYYxC-R_VzBKpype4,473728
|
|
121
121
|
triton/backends/nvidia/lib/x64/cuda.lib,sha256=I5DZfR8aQ9wodYo3trskSbJpJd9lHvZXsnEZ3NV30LQ,160840
|
|
122
122
|
triton/compiler/__init__.py,sha256=0NEunzjGCNEVOhYZLDI4pDi_zAaYAgTXNm8U5uxbdL0,242
|
|
123
123
|
triton/compiler/code_generator.py,sha256=Nkp9HdXymGenQROPg8W0UyWeJApdUfNk8k9xls7b9EI,62153
|
|
124
|
-
triton/compiler/compiler.py,sha256=
|
|
124
|
+
triton/compiler/compiler.py,sha256=LiNMHZOnyulJNBtguFZ_glkUEo7VmOHYRsi8GanWWtg,18470
|
|
125
125
|
triton/compiler/errors.py,sha256=I9Y15pDWcL9heY4SWWdLeMDtW6Iiq2pFXzKfJ6dY_C0,1732
|
|
126
126
|
triton/compiler/make_launcher.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
127
127
|
triton/language/__init__.py,sha256=8gybBY5MBcoXi3K28AVXY-oSaTWxtNIyNbp6fzh-Pn0,5366
|
|
@@ -142,12 +142,102 @@ triton/language/extra/hip/libdevice.py,sha256=EVraUfeXzQmN3F5Lleg2mohVcbFWOWlLaA
|
|
|
142
142
|
triton/runtime/__init__.py,sha256=mKL5cqIBDUw2WO80NRCh4s1G8KYaqgM59TTAbTkPPjQ,621
|
|
143
143
|
triton/runtime/_allocation.py,sha256=zaW4B7I7c-2rkVuN7IZaUB6IQSI1t4FvnTPZH-r7DTk,798
|
|
144
144
|
triton/runtime/autotuner.py,sha256=h1I6TDPPYtMvuwOkeprcSD3VKKGXk952jXN64oPIFXs,16844
|
|
145
|
-
triton/runtime/build.py,sha256=
|
|
145
|
+
triton/runtime/build.py,sha256=6Ie4gn4-Zk1DIW3o-Nd002IhtEm_yikXh9o6tUm6iao,3279
|
|
146
146
|
triton/runtime/cache.py,sha256=Vs9l4DeRhKXyB-hfDBrp5v85OO6vkkXTHTVjZ7zu0xg,10260
|
|
147
147
|
triton/runtime/driver.py,sha256=VZ-883Xri71R72lHB6usIpLo3gGLbZJkAlLP3ewWSpc,1509
|
|
148
148
|
triton/runtime/errors.py,sha256=CwfJXciwel_-K3BfQfKUpLPDWrSyTnGsfJkqJojrdfQ,1052
|
|
149
149
|
triton/runtime/interpreter.py,sha256=RVzNGSXyLlg14LgjJ5BZ3qbqfK49FccG-pXaIXXXE2g,59331
|
|
150
150
|
triton/runtime/jit.py,sha256=jnMaMATWM3LU-s2QJPGeWVH5EGG78dT5aEUkGEhbpKc,34892
|
|
151
|
+
triton/runtime/tcc/libtcc.dll,sha256=4IVp00uvXFRsmhnF5tC1mT8Zb0Hl6uuxDlTHG1kQkrw,156160
|
|
152
|
+
triton/runtime/tcc/tcc.exe,sha256=6cs-ieIKnv6tg8yeaxADFCdWNML3BQVtpx9CTqmwzfA,23552
|
|
153
|
+
triton/runtime/tcc/include/_mingw.h,sha256=q0vn005_oOci8JSODJCtTZW4oexknC8Ybfo4e1e-eDM,3865
|
|
154
|
+
triton/runtime/tcc/include/assert.h,sha256=Orft7F5VhAw1viUrrVIjaVXDtPkUOBDNsfCcNFEOuMQ,1439
|
|
155
|
+
triton/runtime/tcc/include/conio.h,sha256=3nFh-Fg12Ys4_moZ74lz3K9Y7CN7HJHPBaxTWy_zhF8,11130
|
|
156
|
+
triton/runtime/tcc/include/ctype.h,sha256=TPqqQ7P3QUmEEm6LHN9l-drA72jZozlr4LiCg3anSms,9755
|
|
157
|
+
triton/runtime/tcc/include/dir.h,sha256=hAZLF-UB1pHEPUfkWxEsKITbRnQXkQtfoUgrcjQrrfs,952
|
|
158
|
+
triton/runtime/tcc/include/direct.h,sha256=F5wyBDEtfPgDIQJ3Nim8s-X_95LR2AiTHLZhmkMdJDU,1979
|
|
159
|
+
triton/runtime/tcc/include/dirent.h,sha256=iMH3Z_3NbVG5ke4yNHktpIyFdvX4gW8XpCNE-ci7scE,3339
|
|
160
|
+
triton/runtime/tcc/include/dos.h,sha256=Ov6kroXGiYf-WfQFkqxeo-8QSbT7cmErsYU1jWKOLew,1090
|
|
161
|
+
triton/runtime/tcc/include/errno.h,sha256=fISU_lfZRHc4YcTBzB8rRrMREUSiS_UFs9R7MvCsHoo,1410
|
|
162
|
+
triton/runtime/tcc/include/excpt.h,sha256=AJjlFgLJT4qXAvS3dtNjD1buwn7We5_DbZIEkztYrE0,3796
|
|
163
|
+
triton/runtime/tcc/include/fcntl.h,sha256=-9lPlFpXFlrIl726zSqGGxNR54UPp2dScDwKYi4GRvo,1269
|
|
164
|
+
triton/runtime/tcc/include/fenv.h,sha256=Z6gnrPTgllOvtdGPLsql_N-3Rx2KW4GXwvM9BuhGL4Q,3146
|
|
165
|
+
triton/runtime/tcc/include/float.h,sha256=ybqqR447qFiXt4H3BlueFE-qzI6ByvpaZCtdSceENOs,1374
|
|
166
|
+
triton/runtime/tcc/include/inttypes.h,sha256=QZTAQIzbozC3z6HSCR1yoM-_IHf_H-sZ9Dbz86oq3xg,6072
|
|
167
|
+
triton/runtime/tcc/include/io.h,sha256=Xal8hQ6OKrYIxClHozQR9Vb211uCZOHlzynKe6e5YlY,13067
|
|
168
|
+
triton/runtime/tcc/include/limits.h,sha256=OcB2Hw5D17k2ubgchWc92CiW6_pm6fG5oZtF805M1So,2686
|
|
169
|
+
triton/runtime/tcc/include/locale.h,sha256=iCYm-iXbwbWQPm_ZjMhRbx5UxOBpRQJmU_BbOBJd_yw,2135
|
|
170
|
+
triton/runtime/tcc/include/malloc.h,sha256=cwf_MwuNeVTVSOGeRYh-1k3jbaW-4f2izAIfDBwYkr0,5214
|
|
171
|
+
triton/runtime/tcc/include/math.h,sha256=6kH9ac-CcbSFMZnKg04GyURd4fsDFLcqYc59TqdZsMc,23036
|
|
172
|
+
triton/runtime/tcc/include/mem.h,sha256=Q5VpRq7-5Q4B_dTVSmxZdBirywIlH512le1wOf16X_Y,345
|
|
173
|
+
triton/runtime/tcc/include/memory.h,sha256=tDQeGIkTqBn6O_EBB4qVygd3gCGTc_Qkw5rYbJTgS28,1233
|
|
174
|
+
triton/runtime/tcc/include/process.h,sha256=aUfJVPKvZ25mzDjWSxoWVChzQADi4nL4g8LXSoW4ICA,9091
|
|
175
|
+
triton/runtime/tcc/include/setjmp.h,sha256=thZOt_rkoSFjJRSS9_TlbMUNFG7HovVkDYbspNCVBG8,3867
|
|
176
|
+
triton/runtime/tcc/include/share.h,sha256=bekiwb1-7cMzCDBHhcISlFBk12Pu37NzwJy7tcuTPd4,639
|
|
177
|
+
triton/runtime/tcc/include/signal.h,sha256=BFoDGzdnM-16aFvAFwn1KBQDcp_3xgG5E7Ksov4Uk7s,1583
|
|
178
|
+
triton/runtime/tcc/include/stdarg.h,sha256=EWUEp8P-q7xFUenbC-yVcXBkfvIGfrRqQwS8v93OWjA,2494
|
|
179
|
+
triton/runtime/tcc/include/stdbool.h,sha256=UlKCQiXdxIawRgZ392XkFXr10-16zWWzEKQEXq-1avc,176
|
|
180
|
+
triton/runtime/tcc/include/stddef.h,sha256=yR_6rvUjHG1-dE4HAPH0KcnPrYikES_dWrq7cB87Wks,1402
|
|
181
|
+
triton/runtime/tcc/include/stdint.h,sha256=M8bI2n1WS1cCr4xv9FwAoWhCuj_-P5X39iMnUvY8Wv0,6333
|
|
182
|
+
triton/runtime/tcc/include/stdio.h,sha256=dJBZg0FDvNW9zqE_yGPItlh6idbfyEzVAXqY3xkN770,14903
|
|
183
|
+
triton/runtime/tcc/include/stdlib.h,sha256=W7oJWi0iprwGcPc7_rumPP7GX4t8JI6E42s9ft4KTzw,20426
|
|
184
|
+
triton/runtime/tcc/include/string.h,sha256=1cAsImU3hHku7_BMxFNGe6IsIU2azodhJ-q1_My8p2I,8590
|
|
185
|
+
triton/runtime/tcc/include/tcclib.h,sha256=FR8_fIZXa9SS0lT4QOI02XmTxG1NmoJhTX0JU8AFdeE,2611
|
|
186
|
+
triton/runtime/tcc/include/tchar.h,sha256=f-X94Cj_j2nSvakQZk4sFp57ksbn8s95FetyBUqXRv8,31364
|
|
187
|
+
triton/runtime/tcc/include/time.h,sha256=RTeTotbG_HctHN1g5wH7PTk9dSk3wdayymTV8c7J_TY,8405
|
|
188
|
+
triton/runtime/tcc/include/vadefs.h,sha256=LmqzWVWTGaEagPj1KqBHLNCxQRN_Oh6qGMQNiCfcUdQ,304
|
|
189
|
+
triton/runtime/tcc/include/values.h,sha256=-jdYhHsz9Zq-mbAjvgDYoCfDkezQWAof51VJfBHgxyM,126
|
|
190
|
+
triton/runtime/tcc/include/varargs.h,sha256=B4WIV_Tu0KYd-UvrGp1ni1P8PWegsOiTYVX4XdvNHcw,355
|
|
191
|
+
triton/runtime/tcc/include/wchar.h,sha256=yb8S4CoqsHg-0cZt_kPeQ8QCszkGytqbEVdQKoLHw-Q,34132
|
|
192
|
+
triton/runtime/tcc/include/wctype.h,sha256=4S2cW8vk37lupsdUEOooeRezwkv_nNLnFtNeAMHUkGw,4782
|
|
193
|
+
triton/runtime/tcc/include/sec_api/conio_s.h,sha256=9zdegWc5SR-6s5UxwdYKd7eP-aFiq6F_gXx3O_dfZQg,1535
|
|
194
|
+
triton/runtime/tcc/include/sec_api/crtdbg_s.h,sha256=A2MO6D58khRGoHkIU_yt61owhVPdPE7N3VaM2jFnwPE,461
|
|
195
|
+
triton/runtime/tcc/include/sec_api/io_s.h,sha256=bgL0rlDTBimvffNHhbbDJkKxLZSt3VZgb2_Eq2aCUP8,881
|
|
196
|
+
triton/runtime/tcc/include/sec_api/mbstring_s.h,sha256=2WKrgHCViVP0iyTJ6gaLNFsVgjeCb7cbmnbTbPLooys,3615
|
|
197
|
+
triton/runtime/tcc/include/sec_api/search_s.h,sha256=lhdOCfHFc8f66oWm1WgiWhuUbhM8bASnvWqoZcWIlqI,796
|
|
198
|
+
triton/runtime/tcc/include/sec_api/stdio_s.h,sha256=UQe-10DGJ0_8dnrULe1s5aj1HLDHMjnQTVpkfWLt8vE,11508
|
|
199
|
+
triton/runtime/tcc/include/sec_api/stdlib_s.h,sha256=hlDjS-JBx9g3QzEmh462ow7nHAt1nCNnH9jwcVx83mU,4113
|
|
200
|
+
triton/runtime/tcc/include/sec_api/stralign_s.h,sha256=sj8M951UVeIy2SeS4rK-OBJaAoCLwAUEk2e6to2hMAs,824
|
|
201
|
+
triton/runtime/tcc/include/sec_api/string_s.h,sha256=7vMvtQW5ijYQkj6N2z3nJMVbRDidJc73z1DuPNFPXWg,1787
|
|
202
|
+
triton/runtime/tcc/include/sec_api/tchar_s.h,sha256=pTGMzrJBlidpFpwyo85b-5oHWlLtusMarTOw17iXtUQ,8328
|
|
203
|
+
triton/runtime/tcc/include/sec_api/time_s.h,sha256=munLejFkrQCT44h7DKCbtnSY2lG7ROm-UAtg5yo4XcA,2331
|
|
204
|
+
triton/runtime/tcc/include/sec_api/wchar_s.h,sha256=WkcKw1iy2VEgIYL57B-UUzHCOo15YprU7bCLfXPPruQ,7492
|
|
205
|
+
triton/runtime/tcc/include/sec_api/sys/timeb_s.h,sha256=0VNBfsZOt7FQR0m8pkd-_VG0si3mcFGPT9wnAQgBRcA,653
|
|
206
|
+
triton/runtime/tcc/include/sys/fcntl.h,sha256=K09mD_2JlK-gOHQHBR48p-zI_kS-sq3S1DHNUs6K2cQ,359
|
|
207
|
+
triton/runtime/tcc/include/sys/file.h,sha256=tud5xTFAwRe8Nr0zXGS_yxOuTCxIa5R4OzIUmm6y0yA,367
|
|
208
|
+
triton/runtime/tcc/include/sys/locking.h,sha256=KXhhRemvNKH5bnNohVsZ6IefyA01oXLZupfTx_wvYxE,648
|
|
209
|
+
triton/runtime/tcc/include/sys/stat.h,sha256=TcEmq0sxd9qF5A7Van1FFhBeQ2pGJCcpkoFrI-A5FbU,6881
|
|
210
|
+
triton/runtime/tcc/include/sys/time.h,sha256=UYdB8oZUVDTfZ2Vy5Tv4VTsElqcTiULcayD_JStCk-Q,1717
|
|
211
|
+
triton/runtime/tcc/include/sys/timeb.h,sha256=70P59RZgq4KCcH9xacw9l3h45iN0PSPsVlZj_itOl4I,2445
|
|
212
|
+
triton/runtime/tcc/include/sys/types.h,sha256=8cP55cgRpjvrrlIpBCwJy14Ff0EX_TG0Wqy7TDpibfg,2128
|
|
213
|
+
triton/runtime/tcc/include/sys/unistd.h,sha256=H1lahcru73OFoL2pSvUYlrIU7iYFZISvUDU-k5PeGSk,351
|
|
214
|
+
triton/runtime/tcc/include/sys/utime.h,sha256=UkMS4-ijJffVr8Id24_LzrhdRRF14H7xvq23-C-jaLM,3429
|
|
215
|
+
triton/runtime/tcc/include/tcc/tcc_libm.h,sha256=dY4Fhe37zkS_J-C7RNmyKvU7hsnCZeQwPfmycBlO1P8,5780
|
|
216
|
+
triton/runtime/tcc/include/winapi/basetsd.h,sha256=XJy6oWq_V0AO0xtJqrfuAVeI2-fTtY89U8hts4B91vA,5614
|
|
217
|
+
triton/runtime/tcc/include/winapi/basetyps.h,sha256=NIQu4zicsTpyorh-yTCq2__OiQbrMUgBgM_1Qcf0QTQ,2413
|
|
218
|
+
triton/runtime/tcc/include/winapi/guiddef.h,sha256=fbGx_kZRP1eKPHd8POMA2EA9Mfv7bQDqz_kyhtLtEpM,4165
|
|
219
|
+
triton/runtime/tcc/include/winapi/poppack.h,sha256=gclR4fuHqo9uiHGgcyd_HNHMubZvbvqSr_NbzQCmByY,282
|
|
220
|
+
triton/runtime/tcc/include/winapi/pshpack1.h,sha256=jrZ90jPVo4fW3BgUy262xt6aEjQ4-u_Ke0QmkcryMEk,285
|
|
221
|
+
triton/runtime/tcc/include/winapi/pshpack2.h,sha256=1FnL1UaSn9RJgNMsFoCo8XbXF86d8WL1xcRD39zMnkI,285
|
|
222
|
+
triton/runtime/tcc/include/winapi/pshpack4.h,sha256=zTuhJYpd2ccUh50-SZsCHIXumCfAa6wvwsHmd7WQlTE,285
|
|
223
|
+
triton/runtime/tcc/include/winapi/pshpack8.h,sha256=Mv57X_I4fJFq0TTvW1sKxnRH2g4NzPQFwxViqscY1tg,285
|
|
224
|
+
triton/runtime/tcc/include/winapi/winbase.h,sha256=R-_7pNS7ffvjc_EVYoWhcAQv4aNVK8u-5GDl22jh_y0,159607
|
|
225
|
+
triton/runtime/tcc/include/winapi/wincon.h,sha256=yWW4g54QDpqsrTM7NzIY-WKhWEBYMjH5aAdkQeeBU4s,14473
|
|
226
|
+
triton/runtime/tcc/include/winapi/windef.h,sha256=E36aQ6E25K4Zs6TIRAI8ahYRsjaFAANk9r4xQ9saTHU,5674
|
|
227
|
+
triton/runtime/tcc/include/winapi/windows.h,sha256=Ow2A5LJ-CZyK9UPW2cyilcaOEVoPunzXnMDnbRw6XBE,2173
|
|
228
|
+
triton/runtime/tcc/include/winapi/winerror.h,sha256=WQE0AAsbXE-3r7zFSkRaQiKNdBZKnoskQ00amT92hS4,150512
|
|
229
|
+
triton/runtime/tcc/include/winapi/wingdi.h,sha256=31k3rBgFsnq7oDJ30sNMrujLQ4ftuJStzXPmFyqfvZQ,121301
|
|
230
|
+
triton/runtime/tcc/include/winapi/winnt.h,sha256=t4lEvboYsxS8SiDVgd0IWP2Ld1pJLtvqLRp8KvxBjhs,192723
|
|
231
|
+
triton/runtime/tcc/include/winapi/winreg.h,sha256=bbuWncIekNkETavNGQJowbsz5EWGLOKkpTbppxNPpOs,13963
|
|
232
|
+
triton/runtime/tcc/include/winapi/winuser.h,sha256=Q1a_zfUgnE7FjeSG4hc85LF-DOdaQisib93dGFl8mQU,179678
|
|
233
|
+
triton/runtime/tcc/include/winapi/winver.h,sha256=fYRmeOwqjHD4YwjPa-WF12CSTGIN_PtLBI9g2IV3tp0,5381
|
|
234
|
+
triton/runtime/tcc/lib/cuda.def,sha256=c8XdUSeajwFv0jSgW1lDoiCcEauHygWrl8Ws4wRrB_g,15535
|
|
235
|
+
triton/runtime/tcc/lib/gdi32.def,sha256=NfGNAGtoQaOuBuheG0mv4AqlinvYm9aPNbSycCUP50A,5052
|
|
236
|
+
triton/runtime/tcc/lib/kernel32.def,sha256=ank2QlCtswD44SShHIX-0vqd5XQI6r0eu7HO3PszuM4,12882
|
|
237
|
+
triton/runtime/tcc/lib/libtcc1-64.a,sha256=huWSqjVuP1FZcAo-Fqp5kiBNVFlhsn6oy2JvyzSxWUs,41706
|
|
238
|
+
triton/runtime/tcc/lib/msvcrt.def,sha256=oB3JKUV0IE47w6R7bKFEnIlfef-SFeWC4jg6g-YUg7g,15880
|
|
239
|
+
triton/runtime/tcc/lib/python3.def,sha256=o8MijZkdWOnHNPU4fmJrT1qw3fWSlaegC969H_X5_VE,16173
|
|
240
|
+
triton/runtime/tcc/lib/user32.def,sha256=EcYohyyDgmz9fLBoOR-vszLeJ2YkBUoNGvSnuXrkum0,10439
|
|
151
241
|
triton/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
152
242
|
triton/tools/build_extern.py,sha256=jCr-2hu3nLGBIJhCGUQ1jAyzLttughjkiPGEwRFjLR0,13673
|
|
153
243
|
triton/tools/compile.py,sha256=CP_-yqEd55ejkc2_OYVE7q0Eyh9xErk8KJy2BcdCV0Y,7129
|
|
@@ -157,7 +247,7 @@ triton/tools/link.py,sha256=u7qtfZRLriZkAMEGNvj8YF-k1cthmLL7BwHYqBgT63E,11871
|
|
|
157
247
|
triton/tools/mxfp.py,sha256=YQdpBrGkOVNOtnLeRjMCeVFHWkSwUubGeWsItIjO8TU,11737
|
|
158
248
|
triton/tools/extra/cuda/compile.c,sha256=Me7beHPc6WNTwjg85H84DUMCRu4KJdVK2hNNgvlhBZ4,2126
|
|
159
249
|
triton/tools/extra/cuda/compile.h,sha256=n9QKIFZTL4RSsiXtAxBP9XGSnxjyaevQQ9bBpwDsvAg,332
|
|
160
|
-
triton_windows-3.3.0a0.
|
|
161
|
-
triton_windows-3.3.0a0.
|
|
162
|
-
triton_windows-3.3.0a0.
|
|
163
|
-
triton_windows-3.3.0a0.
|
|
250
|
+
triton_windows-3.3.0a0.post13.dist-info/METADATA,sha256=q8Up697YxbEhH8USzvFV-2iVccdR1Ysd-p9jBjt_EQA,1629
|
|
251
|
+
triton_windows-3.3.0a0.post13.dist-info/WHEEL,sha256=9BrMuZXDRTGLZNx9MjfYwuYQduoUw2h3Jbd54pkFb1Y,101
|
|
252
|
+
triton_windows-3.3.0a0.post13.dist-info/top_level.txt,sha256=KhMzHYsArnZ3IkjAQ-xLnx1n_FjvEpJNelg2xPiDl-U,254
|
|
253
|
+
triton_windows-3.3.0a0.post13.dist-info/RECORD,,
|
|
File without changes
|
{triton_windows-3.3.0a0.post11.dist-info → triton_windows-3.3.0a0.post13.dist-info}/top_level.txt
RENAMED
|
File without changes
|