triton-windows 3.2.0.post16__cp312-cp312-win_amd64.whl → 3.2.0.post17__cp312-cp312-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 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
- os.replace(temp_path, filepath)
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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: triton-windows
3
- Version: 3.2.0.post16
3
+ Version: 3.2.0.post17
4
4
  Summary: A language and compiler for custom Deep Learning operations
5
5
  Home-page: https://github.com/woct0rdho/triton-windows
6
6
  Author: Philippe Tillet, Dian Wu
@@ -3,7 +3,7 @@ triton/_internal_testing.py,sha256=4pzyc_36u05khUveZ1TWL3MQ-7EVMJ1C2c1dRd8BMsw,4
3
3
  triton/errors.py,sha256=8WfnuRKLG578mgY6cBA3ECruVMf9ULEKFNgRcJ6IhWM,89
4
4
  triton/testing.py,sha256=fX3pn9bjC3Z-z5qzSKW56C_2WF8h3mHLy5RJqpZ-HsA,19382
5
5
  triton/windows_utils.py,sha256=aQMItmuZNXaki8zSB7HMvhy1RsXlmz1GcO-lORm1IIk,10852
6
- triton/_C/libtriton.pyd,sha256=3ocQA69Ta52c636ootNpq1HBDRrR1IzSHBktv7uPUvA,87254528
6
+ triton/_C/libtriton.pyd,sha256=G30VIWeW8rJzfziZGm8Wq8sMs4uVvfQtfGd5uwvWrlU,87254528
7
7
  triton/backends/__init__.py,sha256=opAo_vgEMt3tLO_bYFrYGksnIu0qohbmyuu_s3-rNAs,1595
8
8
  triton/backends/compiler.py,sha256=JZiiEbB9Wws3tjU6KXrydKtlOQI7Suk-mTYPlafa0Qk,11388
9
9
  triton/backends/driver.py,sha256=QX_6P1Go9ajdlHZi4Hv3nCtdHyDA6o8_lM3NMnlH1mk,1386
@@ -135,7 +135,7 @@ triton/language/extra/hip/libdevice.py,sha256=EVraUfeXzQmN3F5Lleg2mohVcbFWOWlLaA
135
135
  triton/runtime/__init__.py,sha256=mKL5cqIBDUw2WO80NRCh4s1G8KYaqgM59TTAbTkPPjQ,621
136
136
  triton/runtime/autotuner.py,sha256=BJe69v9MSMSzdkvYSUDrvXrAFeLZ1x6A-7aUmpz2Le0,17271
137
137
  triton/runtime/build.py,sha256=elg0nv2lfaNzj-kfDv73-hAGir477OVQa8-0z-oQMjk,4428
138
- triton/runtime/cache.py,sha256=OQhUkwIW38-kayOL8P6SizWMAYSoVa_TbOYdTUHBkU0,10268
138
+ triton/runtime/cache.py,sha256=xMLfnhhgGoG2H5u7zQTydao4H0nenvAy0Or7btKWLiM,10591
139
139
  triton/runtime/driver.py,sha256=VZ-883Xri71R72lHB6usIpLo3gGLbZJkAlLP3ewWSpc,1509
140
140
  triton/runtime/errors.py,sha256=oj73dn34qJbLhOjakakAuZPSv-laZyIYylJiJwREA8Y,787
141
141
  triton/runtime/interpreter.py,sha256=0SPiXDlM7X7DbCdu2JXoLmxJ8ugCwH_3NPoxuU0tJyg,53201
@@ -238,7 +238,7 @@ triton/tools/compile.py,sha256=b3yNnVgoBk8WzOs87JrZPDIyasdSgAslOWmxse1J6yM,6761
238
238
  triton/tools/disasm.py,sha256=BBO4bALdLcWgWDLhQdYHLlTx3oo8g_d8maeE_Uu-FmU,5088
239
239
  triton/tools/experimental_descriptor.py,sha256=0Wqy96Cc6YLh9o0eTknW-Lfvha6lfRSfe8bswkcPHMs,1260
240
240
  triton/tools/link.py,sha256=u7qtfZRLriZkAMEGNvj8YF-k1cthmLL7BwHYqBgT63E,11871
241
- triton_windows-3.2.0.post16.dist-info/METADATA,sha256=zxegA-uRJZoybHNk_X6ScqsXXzaeU5-4iv9mRfshjS0,1514
242
- triton_windows-3.2.0.post16.dist-info/WHEEL,sha256=9_mdKl-_Yr--f6EOmQ6F9FLhZL1o0okl1kr9b_edmVI,101
243
- triton_windows-3.2.0.post16.dist-info/top_level.txt,sha256=iIyUoyO6Ld8jQHWY9plUyco-emBXKTqVmuAXJAGvmEk,211
244
- triton_windows-3.2.0.post16.dist-info/RECORD,,
241
+ triton_windows-3.2.0.post17.dist-info/METADATA,sha256=eBQszKwOYSWNxTzpro6SuqUlVl2LOHDz6Qxd2P4EsxM,1514
242
+ triton_windows-3.2.0.post17.dist-info/WHEEL,sha256=9_mdKl-_Yr--f6EOmQ6F9FLhZL1o0okl1kr9b_edmVI,101
243
+ triton_windows-3.2.0.post17.dist-info/top_level.txt,sha256=iIyUoyO6Ld8jQHWY9plUyco-emBXKTqVmuAXJAGvmEk,211
244
+ triton_windows-3.2.0.post17.dist-info/RECORD,,