pyopencl 2025.1__cp310-cp310-win_amd64.whl → 2025.2.1__cp310-cp310-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 pyopencl might be problematic. Click here for more details.
- pyopencl/__init__.py +568 -997
- pyopencl/_cl.cp310-win_amd64.pyd +0 -0
- pyopencl/_cl.pyi +2006 -0
- pyopencl/_cluda.py +3 -0
- pyopencl/_monkeypatch.py +1063 -0
- pyopencl/_mymako.py +3 -0
- pyopencl/algorithm.py +29 -24
- pyopencl/array.py +30 -27
- pyopencl/bitonic_sort.py +5 -2
- pyopencl/bitonic_sort_templates.py +3 -0
- pyopencl/cache.py +5 -5
- pyopencl/capture_call.py +31 -8
- pyopencl/characterize/__init__.py +26 -19
- pyopencl/characterize/performance.py +3 -0
- pyopencl/clmath.py +2 -0
- pyopencl/clrandom.py +3 -0
- pyopencl/cltypes.py +67 -2
- pyopencl/compyte/array.py +3 -3
- pyopencl/compyte/dtypes.py +22 -16
- pyopencl/compyte/pyproject.toml +2 -22
- pyopencl/elementwise.py +13 -10
- pyopencl/invoker.py +13 -17
- pyopencl/ipython_ext.py +2 -0
- pyopencl/py.typed +0 -0
- pyopencl/reduction.py +18 -16
- pyopencl/scan.py +31 -30
- pyopencl/tools.py +128 -90
- pyopencl/typing.py +52 -0
- pyopencl/version.py +2 -0
- {pyopencl-2025.1.dist-info → pyopencl-2025.2.1.dist-info}/METADATA +11 -10
- pyopencl-2025.2.1.dist-info/RECORD +46 -0
- {pyopencl-2025.1.dist-info → pyopencl-2025.2.1.dist-info}/WHEEL +1 -1
- pyopencl-2025.1.dist-info/RECORD +0 -42
- {pyopencl-2025.1.dist-info → pyopencl-2025.2.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pyopencl
|
|
3
|
-
Version: 2025.1
|
|
3
|
+
Version: 2025.2.1
|
|
4
4
|
Summary: Python wrapper for OpenCL
|
|
5
5
|
Author-Email: Andreas Kloeckner <inform@tiker.net>
|
|
6
|
+
License-Expression: MIT
|
|
6
7
|
Classifier: Development Status :: 5 - Production/Stable
|
|
7
8
|
Classifier: Environment :: Console
|
|
8
9
|
Classifier: Intended Audience :: Developers
|
|
9
10
|
Classifier: Intended Audience :: Other Audience
|
|
10
11
|
Classifier: Intended Audience :: Science/Research
|
|
11
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
12
12
|
Classifier: Natural Language :: English
|
|
13
13
|
Classifier: Programming Language :: C++
|
|
14
14
|
Classifier: Programming Language :: Python
|
|
@@ -19,21 +19,22 @@ Classifier: Topic :: Scientific/Engineering :: Physics
|
|
|
19
19
|
Project-URL: Documentation, https://documen.tician.de/pyopencl
|
|
20
20
|
Project-URL: Homepage, https://mathema.tician.de/software/pyopencl
|
|
21
21
|
Project-URL: Repository, https://github.com/inducer/pyopencl
|
|
22
|
-
Requires-Python: ~=3.
|
|
22
|
+
Requires-Python: ~=3.10
|
|
23
23
|
Requires-Dist: importlib-resources; python_version < "3.9"
|
|
24
24
|
Requires-Dist: numpy
|
|
25
25
|
Requires-Dist: platformdirs>=2.2
|
|
26
|
-
Requires-Dist: pytools>=
|
|
26
|
+
Requires-Dist: pytools>=2025.1.6
|
|
27
|
+
Requires-Dist: typing_extensions>=4.6
|
|
28
|
+
Provides-Extra: oclgrind
|
|
27
29
|
Requires-Dist: oclgrind-binary-distribution>=18.3; extra == "oclgrind"
|
|
30
|
+
Provides-Extra: pocl
|
|
28
31
|
Requires-Dist: pocl-binary-distribution>=1.2; extra == "pocl"
|
|
32
|
+
Provides-Extra: test
|
|
29
33
|
Requires-Dist: ruff; extra == "test"
|
|
30
34
|
Requires-Dist: mako; extra == "test"
|
|
31
35
|
Requires-Dist: mypy; extra == "test"
|
|
32
36
|
Requires-Dist: pylint; extra == "test"
|
|
33
37
|
Requires-Dist: pytest>=7; extra == "test"
|
|
34
|
-
Provides-Extra: oclgrind
|
|
35
|
-
Provides-Extra: pocl
|
|
36
|
-
Provides-Extra: test
|
|
37
38
|
Description-Content-Type: text/x-rst
|
|
38
39
|
|
|
39
40
|
PyOpenCL: Pythonic Access to OpenCL, with Arrays and Algorithms
|
|
@@ -42,9 +43,9 @@ PyOpenCL: Pythonic Access to OpenCL, with Arrays and Algorithms
|
|
|
42
43
|
.. |badge-gitlab-ci| image:: https://gitlab.tiker.net/inducer/pyopencl/badges/main/pipeline.svg
|
|
43
44
|
:alt: Gitlab Build Status
|
|
44
45
|
:target: https://gitlab.tiker.net/inducer/pyopencl/commits/main
|
|
45
|
-
.. |badge-github-ci| image:: https://github.com/inducer/pyopencl/workflows/
|
|
46
|
+
.. |badge-github-ci| image:: https://github.com/inducer/pyopencl/actions/workflows/ci.yml/badge.svg
|
|
46
47
|
:alt: Github Build Status
|
|
47
|
-
:target: https://github.com/inducer/pyopencl/actions
|
|
48
|
+
:target: https://github.com/inducer/pyopencl/actions/workflows/ci.yml
|
|
48
49
|
.. |badge-pypi| image:: https://badge.fury.io/py/pyopencl.svg
|
|
49
50
|
:alt: Python Package Index Release Page
|
|
50
51
|
:target: https://pypi.org/project/pyopencl/
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
pyopencl/__init__.py,sha256=tF-6Bz22ydaM-nymBImLy7EajeklT_CQgdQNFIFWEl0,64721
|
|
2
|
+
pyopencl/_cl.cp310-win_amd64.pyd,sha256=pnxKiYfoadiEF-hiXUM67iMjc7An9j-7gPplyUwrv9Q,632320
|
|
3
|
+
pyopencl/_cl.pyi,sha256=QnCqG_fjW3VyUQsxcdcZ8M3ZePQ1BtA4XWFfgjfwGPg,58241
|
|
4
|
+
pyopencl/_cluda.py,sha256=zlp4ECLzlQOF5ERjXeDJ6j5wYsxPm3VAYwd7adnNYo0,2168
|
|
5
|
+
pyopencl/_monkeypatch.py,sha256=EyC-4DeFCaSBKQ00kJZxF6z-e44P-XSL6xAN2X0oDXM,35908
|
|
6
|
+
pyopencl/_mymako.py,sha256=Ki5F6iY5oAdm_R6Mll-ltbO-DZF37FDEINimG2HRyRY,674
|
|
7
|
+
pyopencl/algorithm.py,sha256=Gx7xqny_g7SA56gbApRdWUvm8UHWJDNvkdL1L3eQ4rY,52824
|
|
8
|
+
pyopencl/array.py,sha256=QImtVkujKnC93uOtZvFIXes8Rlp4e1S9-gVqNtxwfm4,112961
|
|
9
|
+
pyopencl/bitonic_sort.py,sha256=RQUC8tpezdTQGzSEFyue86gVjc76vLKDwaNkqi4afa8,8297
|
|
10
|
+
pyopencl/bitonic_sort_templates.py,sha256=RQaGOQf7f3f4FPX80h4rxOq3_gAq0e6OKaZIuBjcoUI,16785
|
|
11
|
+
pyopencl/cache.py,sha256=R_EW9ekoMe9V4Am6MbIgtnMm-BbRQyWZgzfscKEtkB0,16552
|
|
12
|
+
pyopencl/capture_call.py,sha256=wbZ2Qb1HlI8avDfiQFmbsYgQqCi_hLoPFJEnTC0P-g4,6679
|
|
13
|
+
pyopencl/characterize/__init__.py,sha256=9UMNUa9_uHsV9VA3mDHhmBX8zcYysqwGSQKEXW6Liv0,15028
|
|
14
|
+
pyopencl/characterize/performance.py,sha256=MJk7wj4oqp-lRXhn0oXJN2sxXrPJyboPiV16O-ST7PQ,7143
|
|
15
|
+
pyopencl/cl/pyopencl-airy.cl,sha256=HSUEWbUN2MNzuhvDP3LB9dVY_3dhjFSWXhvGQsrA8VA,8446
|
|
16
|
+
pyopencl/cl/pyopencl-bessel-j-complex.cl,sha256=XOUBUZFxgra9nUAymnbJugcOa1lQyj-fwiZA9ly3rdI,6264
|
|
17
|
+
pyopencl/cl/pyopencl-bessel-j.cl,sha256=V16uWa8t1b0oxNHRCLhCqxzR-28yr-5ZslqHkw2Ved0,24358
|
|
18
|
+
pyopencl/cl/pyopencl-bessel-y.cl,sha256=kD6u2qtgmrNNq75w5uaxHdrvb6oeeTPgrGpF29ERsuE,12732
|
|
19
|
+
pyopencl/cl/pyopencl-complex.h,sha256=DHFUM2sHCv50m4LJvvIpF8sMWc5yOO6kYu9nWlScl6A,8847
|
|
20
|
+
pyopencl/cl/pyopencl-eval-tbl.cl,sha256=SDYB_RkW7jtN_Y_xhCbwGjBSNmBpMg8T4ZXlrP_2q9U,2736
|
|
21
|
+
pyopencl/cl/pyopencl-hankel-complex.cl,sha256=yrxPF4wgr9bTzG4SyJsVbij5SODoJvWaDRDDuo4zrs4,32005
|
|
22
|
+
pyopencl/cl/pyopencl-random123/array.h,sha256=oTYPJfU7s4IXy8xRc3H0rqMq4mgyVxd7UuLSf3liUPY,17413
|
|
23
|
+
pyopencl/cl/pyopencl-random123/openclfeatures.h,sha256=jauJ1WEspr-YNefAuUwPhapl_JQDVa6my_h4fLl-p4o,2974
|
|
24
|
+
pyopencl/cl/pyopencl-random123/philox.cl,sha256=KqPbLt54UwrHPvBe7v4ZMzqI2oGrzp0c0QzqVhydNCY,22226
|
|
25
|
+
pyopencl/cl/pyopencl-random123/threefry.cl,sha256=bC78-HJVuc4AFiNppglDQiN8cZRD45hG1PPdi4Sdt-o,55563
|
|
26
|
+
pyopencl/clmath.py,sha256=XxPDJkWebN3_qTnohXnPuSv8D6dIYQME9R3ObQEUcs4,8540
|
|
27
|
+
pyopencl/clrandom.py,sha256=ozqtoMU9-68DaLDR6SEpjq0rPZ-UeqQuJU-vlp_y2eA,13493
|
|
28
|
+
pyopencl/cltypes.py,sha256=gjRNaTQKQvyWI2ObF-BczGqEIAcgu_SzoW1-_22YLCY,6247
|
|
29
|
+
pyopencl/compyte/.gitignore,sha256=PFMRSJycIqPtcpEn7VqbcenWJqHFDuYtwQm_tLbADt8,189
|
|
30
|
+
pyopencl/compyte/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
+
pyopencl/compyte/array.py,sha256=3V7o2uIzebJ3H-g23NP2qe5DGXAkuoLYaQJtKcXc6yU,7594
|
|
32
|
+
pyopencl/compyte/dtypes.py,sha256=HNNh35QPyhsWn-BzvidltBA3Hi72XGlW3-62vRp-bkc,10201
|
|
33
|
+
pyopencl/compyte/pyproject.toml,sha256=y_MOlhePlmLI24oycBBDKqDpfePj2U_fju4mOcbV4GI,756
|
|
34
|
+
pyopencl/elementwise.py,sha256=9VOX-sg8vkPne3PGROxuXLSf1FeQ8E8uGKRYvxrRIg4,39852
|
|
35
|
+
pyopencl/invoker.py,sha256=hMmVaXOgmOjTjCI6Evjx4x_c8FrbBPlClFGCqirAtOE,14123
|
|
36
|
+
pyopencl/ipython_ext.py,sha256=Hfx5go15On4B0CRDuZcsa3d-lme4-xPNHPdgEa9fbJ8,2021
|
|
37
|
+
pyopencl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
+
pyopencl/reduction.py,sha256=PUd_5n0ZShiNs8s-Cy4_fqfEiZLx9LICSCuo9wrwe60,26295
|
|
39
|
+
pyopencl/scan.py,sha256=tmYbMbSx0CfilgZoRzbROX9TbjptPCxHD-WDUx11uTg,67535
|
|
40
|
+
pyopencl/tools.py,sha256=jLvZAjCBJKwN0Wg_jH9XAObvqIJh-haz_VXpFSfXB1M,48161
|
|
41
|
+
pyopencl/typing.py,sha256=QJTJMuVZ7C5og65xT8s0VJQ6AibQ-Vz7DoEk-vmeg84,1857
|
|
42
|
+
pyopencl/version.py,sha256=Z5G_fsr_KVWqiYzK_pOQ2PbAO20wrFlEuqqKBGiAv4I,315
|
|
43
|
+
pyopencl-2025.2.1.dist-info/METADATA,sha256=ZWuBJXxGy78MiQ68EB8rPStHxAZ7PNgk5LJqDH2OFbg,4756
|
|
44
|
+
pyopencl-2025.2.1.dist-info/WHEEL,sha256=Bg3xfVZCdvCQkqUyMs2y8LOfK6ua4a-d4Njc-PtQZvk,106
|
|
45
|
+
pyopencl-2025.2.1.dist-info/licenses/LICENSE,sha256=jib9h6nV8oAvCkKPKDecpLakmQi1SktCn4YXmllgySY,15566
|
|
46
|
+
pyopencl-2025.2.1.dist-info/RECORD,,
|
pyopencl-2025.1.dist-info/RECORD
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
pyopencl/__init__.py,sha256=wCR09HsGaQ532Dc5vdU8WiyZGZ0qtHBbJQrPQMEGpYI,83853
|
|
2
|
-
pyopencl/_cl.cp310-win_amd64.pyd,sha256=3s64wVO92gGCnohDWqhhcsiLglozoSPtx-BM78gDplk,632320
|
|
3
|
-
pyopencl/_cluda.py,sha256=5coLt4eR5BOLgfUesgnaTx_nUhZ6BBhYi9dodvl7cbc,2128
|
|
4
|
-
pyopencl/_mymako.py,sha256=55mRxOnOH9N7ltPWPND19GD4cszQrB2dhiMUlouoWKU,634
|
|
5
|
-
pyopencl/algorithm.py,sha256=7ilnIG3c4YMDUBP4w4e10UMDHj9nbFITg1oLnEEsej0,52742
|
|
6
|
-
pyopencl/array.py,sha256=WFKzJt9dAoOzu_iildla41PcWWiKxPmh5e8zYA2LxB8,112974
|
|
7
|
-
pyopencl/bitonic_sort.py,sha256=r5Jy-C7LE5ml-Qt0KwD4E0g-Cf4DwpmO_3d25KLNUwY,8263
|
|
8
|
-
pyopencl/bitonic_sort_templates.py,sha256=XQjUiHS9KjFIUYIil1Ls9293hy751AOsJmszlNS-IFk,16745
|
|
9
|
-
pyopencl/cache.py,sha256=HMS-dEURWulvFOzEY33LzNSw3notDY_Rsv_L16OiSuo,16535
|
|
10
|
-
pyopencl/capture_call.py,sha256=3zldPy-ssAchA9Q0ntDDcao2zMPWK9wDPdjdYj4CrIk,5871
|
|
11
|
-
pyopencl/characterize/__init__.py,sha256=rBhH9M6wkp2fYs51vx9BHgNVl-N1Vz_2ofV0uhPsGk0,14802
|
|
12
|
-
pyopencl/characterize/performance.py,sha256=xwyt4SsABo4LipXzjRF7TKz8LVBcLmZZ5os6f7hp3Go,7103
|
|
13
|
-
pyopencl/cl/pyopencl-airy.cl,sha256=HSUEWbUN2MNzuhvDP3LB9dVY_3dhjFSWXhvGQsrA8VA,8446
|
|
14
|
-
pyopencl/cl/pyopencl-bessel-j-complex.cl,sha256=XOUBUZFxgra9nUAymnbJugcOa1lQyj-fwiZA9ly3rdI,6264
|
|
15
|
-
pyopencl/cl/pyopencl-bessel-j.cl,sha256=V16uWa8t1b0oxNHRCLhCqxzR-28yr-5ZslqHkw2Ved0,24358
|
|
16
|
-
pyopencl/cl/pyopencl-bessel-y.cl,sha256=kD6u2qtgmrNNq75w5uaxHdrvb6oeeTPgrGpF29ERsuE,12732
|
|
17
|
-
pyopencl/cl/pyopencl-complex.h,sha256=DHFUM2sHCv50m4LJvvIpF8sMWc5yOO6kYu9nWlScl6A,8847
|
|
18
|
-
pyopencl/cl/pyopencl-eval-tbl.cl,sha256=SDYB_RkW7jtN_Y_xhCbwGjBSNmBpMg8T4ZXlrP_2q9U,2736
|
|
19
|
-
pyopencl/cl/pyopencl-hankel-complex.cl,sha256=yrxPF4wgr9bTzG4SyJsVbij5SODoJvWaDRDDuo4zrs4,32005
|
|
20
|
-
pyopencl/cl/pyopencl-random123/array.h,sha256=oTYPJfU7s4IXy8xRc3H0rqMq4mgyVxd7UuLSf3liUPY,17413
|
|
21
|
-
pyopencl/cl/pyopencl-random123/openclfeatures.h,sha256=jauJ1WEspr-YNefAuUwPhapl_JQDVa6my_h4fLl-p4o,2974
|
|
22
|
-
pyopencl/cl/pyopencl-random123/philox.cl,sha256=KqPbLt54UwrHPvBe7v4ZMzqI2oGrzp0c0QzqVhydNCY,22226
|
|
23
|
-
pyopencl/cl/pyopencl-random123/threefry.cl,sha256=bC78-HJVuc4AFiNppglDQiN8cZRD45hG1PPdi4Sdt-o,55563
|
|
24
|
-
pyopencl/clmath.py,sha256=GL9s0YwKpCgvsGl6ndoWXEngPFWAqRRR_HOoQm57OA8,8502
|
|
25
|
-
pyopencl/clrandom.py,sha256=baRE9GgAqGcp2xy9FgI0E4oEygLqyjZqwIs6YvB35ok,13453
|
|
26
|
-
pyopencl/cltypes.py,sha256=HL-df-L7ivztkHVXN8ef3TxhjfDVHxs-dXudvycd_P0,4953
|
|
27
|
-
pyopencl/compyte/.gitignore,sha256=PFMRSJycIqPtcpEn7VqbcenWJqHFDuYtwQm_tLbADt8,189
|
|
28
|
-
pyopencl/compyte/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
pyopencl/compyte/array.py,sha256=IJzw-dSS_injEiLVNHLlSRi0R2F1sO_8xeeK-XezsSo,7636
|
|
30
|
-
pyopencl/compyte/dtypes.py,sha256=wjJy3pXU6mdYmlFeX-8VM97gH37S5VmMVE1PBNo9om8,10133
|
|
31
|
-
pyopencl/compyte/pyproject.toml,sha256=pcYndN5KAcdZXgsBUiH3VyeMxrV-oesECjS7yGCaY4I,1272
|
|
32
|
-
pyopencl/elementwise.py,sha256=cqUtTgSCys1Z__gOCqyOXYnzPU-jdGz5NKZ9pkaF4oE,39796
|
|
33
|
-
pyopencl/invoker.py,sha256=gTnJQN4_fJ9-3_wKqXfWVpDKzstD2jgYu5qxzPKXdY4,14481
|
|
34
|
-
pyopencl/ipython_ext.py,sha256=e-K-Yjd6sTP9-9d69v0k_1_ifdK77JWMhbynn1FBDH4,1983
|
|
35
|
-
pyopencl/reduction.py,sha256=QoXRhi2_RjUpGDhcfWiMzHHXoBZJuRncnBTn5xwJgR4,26319
|
|
36
|
-
pyopencl/scan.py,sha256=5YoKCBdIHoPha9onGna_65ne2maU0RZ7nR7X2L47YrA,67553
|
|
37
|
-
pyopencl/tools.py,sha256=Pzjm7juH52NZ5fF7ppgCy-p9kR-Jhtw8xqnh-qCEjfs,47467
|
|
38
|
-
pyopencl/version.py,sha256=sFqCA3Ga7hdYRf_43asDOP4gFoFRrZxfkMoyN-HAgNo,277
|
|
39
|
-
pyopencl-2025.1.dist-info/METADATA,sha256=WUY6JEb89dxhMwOVvX9OJVBYPqzlqPNt1TypeIxsCkQ,4783
|
|
40
|
-
pyopencl-2025.1.dist-info/WHEEL,sha256=yxQ6vqLV6BGCdqSh8_cFSPC6ooSNYEn3BaaiIZLFM6w,106
|
|
41
|
-
pyopencl-2025.1.dist-info/licenses/LICENSE,sha256=jib9h6nV8oAvCkKPKDecpLakmQi1SktCn4YXmllgySY,15566
|
|
42
|
-
pyopencl-2025.1.dist-info/RECORD,,
|
|
File without changes
|