triton-windows 3.3.0a0.post16__cp313-cp313-win_amd64.whl → 3.3.0a0.post17__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/runtime/cache.py +9 -1
- {triton_windows-3.3.0a0.post16.dist-info → triton_windows-3.3.0a0.post17.dist-info}/METADATA +1 -1
- {triton_windows-3.3.0a0.post16.dist-info → triton_windows-3.3.0a0.post17.dist-info}/RECORD +6 -6
- {triton_windows-3.3.0a0.post16.dist-info → triton_windows-3.3.0a0.post17.dist-info}/WHEEL +0 -0
- {triton_windows-3.3.0a0.post16.dist-info → triton_windows-3.3.0a0.post17.dist-info}/top_level.txt +0 -0
triton/_C/libtriton.pyd
CHANGED
|
Binary file
|
triton/runtime/cache.py
CHANGED
|
@@ -131,7 +131,15 @@ class FileCacheManager(CacheManager):
|
|
|
131
131
|
f.write(data)
|
|
132
132
|
# Replace is guaranteed to be atomic on POSIX systems if it succeeds
|
|
133
133
|
# so filepath cannot see a partial write
|
|
134
|
-
|
|
134
|
+
try:
|
|
135
|
+
os.replace(temp_path, filepath)
|
|
136
|
+
except PermissionError:
|
|
137
|
+
# Ignore PermissionError on Windows because it happens when another process already
|
|
138
|
+
# put a file into the cache and locked it by opening it.
|
|
139
|
+
if os.name == "nt":
|
|
140
|
+
os.remove(temp_path)
|
|
141
|
+
else:
|
|
142
|
+
raise
|
|
135
143
|
os.removedirs(temp_dir)
|
|
136
144
|
return filepath
|
|
137
145
|
|
|
@@ -4,7 +4,7 @@ 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
6
|
triton/windows_utils.py,sha256=aQMItmuZNXaki8zSB7HMvhy1RsXlmz1GcO-lORm1IIk,10852
|
|
7
|
-
triton/_C/libtriton.pyd,sha256=
|
|
7
|
+
triton/_C/libtriton.pyd,sha256=tpuXfEgiXtK7rI2bLifCyKMkSp8Vt9xwi7e1fwiRIG0,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
|
|
@@ -143,7 +143,7 @@ triton/runtime/__init__.py,sha256=mKL5cqIBDUw2WO80NRCh4s1G8KYaqgM59TTAbTkPPjQ,62
|
|
|
143
143
|
triton/runtime/_allocation.py,sha256=zaW4B7I7c-2rkVuN7IZaUB6IQSI1t4FvnTPZH-r7DTk,798
|
|
144
144
|
triton/runtime/autotuner.py,sha256=h1I6TDPPYtMvuwOkeprcSD3VKKGXk952jXN64oPIFXs,16844
|
|
145
145
|
triton/runtime/build.py,sha256=6Ie4gn4-Zk1DIW3o-Nd002IhtEm_yikXh9o6tUm6iao,3279
|
|
146
|
-
triton/runtime/cache.py,sha256=
|
|
146
|
+
triton/runtime/cache.py,sha256=uoU1UH3HPxkxT0r-69HIZgLBls3T-TDxJedRULX9lbM,10583
|
|
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
|
|
@@ -247,7 +247,7 @@ triton/tools/link.py,sha256=u7qtfZRLriZkAMEGNvj8YF-k1cthmLL7BwHYqBgT63E,11871
|
|
|
247
247
|
triton/tools/mxfp.py,sha256=YQdpBrGkOVNOtnLeRjMCeVFHWkSwUubGeWsItIjO8TU,11737
|
|
248
248
|
triton/tools/extra/cuda/compile.c,sha256=Me7beHPc6WNTwjg85H84DUMCRu4KJdVK2hNNgvlhBZ4,2126
|
|
249
249
|
triton/tools/extra/cuda/compile.h,sha256=n9QKIFZTL4RSsiXtAxBP9XGSnxjyaevQQ9bBpwDsvAg,332
|
|
250
|
-
triton_windows-3.3.0a0.
|
|
251
|
-
triton_windows-3.3.0a0.
|
|
252
|
-
triton_windows-3.3.0a0.
|
|
253
|
-
triton_windows-3.3.0a0.
|
|
250
|
+
triton_windows-3.3.0a0.post17.dist-info/METADATA,sha256=Hj5t_K8_B7fKw2Tp4ki_-rOSVDJ4TWFlJMJ8S_tqShc,1629
|
|
251
|
+
triton_windows-3.3.0a0.post17.dist-info/WHEEL,sha256=L_iEQrKQ0abSxZWLpYPlBsDYbELTe7Z2WP5jxUcelf8,101
|
|
252
|
+
triton_windows-3.3.0a0.post17.dist-info/top_level.txt,sha256=KhMzHYsArnZ3IkjAQ-xLnx1n_FjvEpJNelg2xPiDl-U,254
|
|
253
|
+
triton_windows-3.3.0a0.post17.dist-info/RECORD,,
|
|
File without changes
|
{triton_windows-3.3.0a0.post16.dist-info → triton_windows-3.3.0a0.post17.dist-info}/top_level.txt
RENAMED
|
File without changes
|