pyopencl 2025.1__cp311-cp311-macosx_11_0_arm64.whl → 2025.2.1__cp311-cp311-macosx_11_0_arm64.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.cpython-311-darwin.so +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 +2 -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-2025.2.1.dist-info/RECORD,,
|
|
2
|
+
pyopencl-2025.2.1.dist-info/WHEEL,sha256=7CikrUOKtiy-2ivl-sZ5UBq05y8ywDmf9_HO2E_GAYY,141
|
|
3
|
+
pyopencl-2025.2.1.dist-info/METADATA,sha256=ZWuBJXxGy78MiQ68EB8rPStHxAZ7PNgk5LJqDH2OFbg,4756
|
|
4
|
+
pyopencl-2025.2.1.dist-info/licenses/LICENSE,sha256=wiBvs-UC54bB5DswWuvB66B96b4hkYw_VLt8IR0cBPI,15284
|
|
5
|
+
pyopencl/algorithm.py,sha256=NuBpzVlfY8V6nKcGcQe5uXGnVka7LV1hHCi-uBCAxVc,51370
|
|
6
|
+
pyopencl/clmath.py,sha256=d5aHPy0WQMb01anNAX2nk7t-yRBIEif7sW3aTXEiEUo,8258
|
|
7
|
+
pyopencl/version.py,sha256=53bqHNFDyobSVMAdQ47kiOx1UdhKXDLkTtzNwfLEvY4,304
|
|
8
|
+
pyopencl/capture_call.py,sha256=c1X3HKwtikqgkSuMSvMNKezYCrAtCc8Wt60cvGfFJTQ,6479
|
|
9
|
+
pyopencl/reduction.py,sha256=Lt0Lwnt34RVxyojZ9CiTFj2E_23_vrK5mbj4TZ9l6V8,25507
|
|
10
|
+
pyopencl/tools.py,sha256=bKX4ND-DcKXr7dCFJoJ6C3SWPNFNKA490oDofTaRuCI,46596
|
|
11
|
+
pyopencl/elementwise.py,sha256=uc8aXWv60yUtlwwKhCOVVeo5o7ylPoQPTRLsnRF6gTY,38678
|
|
12
|
+
pyopencl/cache.py,sha256=RiSW4K8FynlV8ibwyDngzSFOa3k-Zi16GSSK05yrdZk,16017
|
|
13
|
+
pyopencl/__init__.py,sha256=_Q1cnbWmRGkZRENKLJwmNXGDbYDmoLuA5T7X7W3nVIU,62740
|
|
14
|
+
pyopencl/_cl.pyi,sha256=VmAi42KFEFL5UdCMuX7I45j16mve3RBGXFfkbSwBICw,56235
|
|
15
|
+
pyopencl/cltypes.py,sha256=hDpwt24YFtng0Z4qNJB5D0NxkOIGwnLRUQKoaWcMcnE,6045
|
|
16
|
+
pyopencl/invoker.py,sha256=ws1kdpzIkc7vc7s4jxtJ7IcdCa5qOT5DiYW6rMxjVVg,13706
|
|
17
|
+
pyopencl/ipython_ext.py,sha256=_l9y3F2fi-tM7_cIlqY1LyWckYHYfVYBKCI4RNpEpKo,1951
|
|
18
|
+
pyopencl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
pyopencl/scan.py,sha256=2OZL2e0q1SPR2N_vXAJKD_Q8m14YE3LSFxeRMC_NrVQ,65619
|
|
20
|
+
pyopencl/_cluda.py,sha256=kjI6pW9M-zGCVDsautsKsYMs1U9v73_W5riUjdzmKA0,2111
|
|
21
|
+
pyopencl/_cl.cpython-311-darwin.so,sha256=QoKLIpHEtXulXf1-d_lE37FBk1lWnpzSVt0UGcFfFHg,539736
|
|
22
|
+
pyopencl/_mymako.py,sha256=1xp0pWcE57hpIDKw915CvOGQpC-Jral02Inykx_k198,657
|
|
23
|
+
pyopencl/_monkeypatch.py,sha256=bBJjQYW6XdiurbG_jgTzJg5BtDteuNVqRQ3Fuzx-Gbk,34845
|
|
24
|
+
pyopencl/typing.py,sha256=sKeC1VCKI57C5SQDNr3yGtJk1QLtPbhlE_bRL4JmAQ4,1805
|
|
25
|
+
pyopencl/array.py,sha256=mVJtRU7Zfgf9aVv9PW1Y_UIz6er_GTBkYLmzbu8kvgo,109596
|
|
26
|
+
pyopencl/bitonic_sort.py,sha256=FpTfCf_s22O-SgPWBoXZjCG_k1afm7uUwnO9N7jubgg,8052
|
|
27
|
+
pyopencl/bitonic_sort_templates.py,sha256=316nsWdr7jpg9g8SmZk8KCoHmHKabjvOdBaufxQPw8Y,16188
|
|
28
|
+
pyopencl/clrandom.py,sha256=Ox_Eebq5fcjsBXpa68C1kt8Ca6CPi5tXwXhEhLY_yP8,13081
|
|
29
|
+
pyopencl/compyte/pyproject.toml,sha256=XuQgiCiOLu7OsrAdhBzbHcM_tLnU9-28KNVDNn9qbZw,722
|
|
30
|
+
pyopencl/compyte/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
+
pyopencl/compyte/dtypes.py,sha256=C303fA_dumU9WyfXaYh53DerGgODJGfDkSEJ8d1_dAk,9905
|
|
32
|
+
pyopencl/compyte/.gitignore,sha256=HVYtbKRtOCPWZavrgYqO2u7UKFiE7g7ympmuQzKbBBw,168
|
|
33
|
+
pyopencl/compyte/array.py,sha256=LQID4Wi04aktqgxCqfQXed9ouxhDuovlBE-fKHLrv9E,7380
|
|
34
|
+
pyopencl/characterize/__init__.py,sha256=AaDNS1p2RtXqGf6tA--GB9FRp-fzavbpgulrAW_BE2Y,14565
|
|
35
|
+
pyopencl/characterize/performance.py,sha256=i8X1jWlyL1bUD7wuDoSlk1CckJkT6zAVPefziQwmNXU,6903
|
|
36
|
+
pyopencl/cl/pyopencl-bessel-y.cl,sha256=VDy8l4lVxO8VcJR_maeGu_Qjnw27j28zBwhaTKDhBBg,12297
|
|
37
|
+
pyopencl/cl/pyopencl-hankel-complex.cl,sha256=JSm38L6cOdnDssVqzKCNgjMrILT5ExkYAxz7i8rQBtA,31561
|
|
38
|
+
pyopencl/cl/pyopencl-bessel-j.cl,sha256=69d5WoqajYSubLgA6OVwYw0yOHGt64zY97J8isnsQgU,23274
|
|
39
|
+
pyopencl/cl/pyopencl-bessel-j-complex.cl,sha256=o-17yK_wBFqRiGgTYHg9waooTEKt1SCoguMUbg2LOB0,6026
|
|
40
|
+
pyopencl/cl/pyopencl-airy.cl,sha256=S6S84BX6v6E9ZuGB7mdbFygUY99BaManrWMf47Ms7NA,8122
|
|
41
|
+
pyopencl/cl/pyopencl-eval-tbl.cl,sha256=YNi_hyeE4GtDwzx3mLOMRIHh9jOOzMwSv-F2F1lMevg,2616
|
|
42
|
+
pyopencl/cl/pyopencl-complex.h,sha256=gy7Ge9tuDeLYdpM8KIvKK347AxK5XPFhlVjJfgPtIlI,8544
|
|
43
|
+
pyopencl/cl/pyopencl-random123/threefry.cl,sha256=2WmQGxx5gPSv22UL9_MlXv0eMug91k3bC-5_yQ4wlnI,54699
|
|
44
|
+
pyopencl/cl/pyopencl-random123/philox.cl,sha256=vYcQH7Vw13Q3qkW5Nhy1HTUDbWLGKoloE1YP0VWk6vU,21740
|
|
45
|
+
pyopencl/cl/pyopencl-random123/array.h,sha256=nIV0zDWYuybldNgtsh79icNtDXHYdDsSpFaWIvDTyw4,17088
|
|
46
|
+
pyopencl/cl/pyopencl-random123/openclfeatures.h,sha256=pAPbl7JkQgJxulSuGGevpaI43P7PwiH2mYxtNfHq59M,2881
|
pyopencl-2025.1.dist-info/RECORD
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
pyopencl/algorithm.py,sha256=8qqD_GqvuQguSCDWcrJCeA05xFMj8mpJH1y5O0tUqmM,51293
|
|
2
|
-
pyopencl/clmath.py,sha256=lOxQzE6BEp5-nVRuGu0hgxzk_gcx7aTiy_hRFxAPmcI,8222
|
|
3
|
-
pyopencl/version.py,sha256=k4ev2_LuJAomsl8CUq1IHcINH3DUnLqTuGkf5q-ua10,268
|
|
4
|
-
pyopencl/capture_call.py,sha256=B2d4SkPrj4f8j5jLDmKHSmSLxK0k9646gKL2FYZkejQ,5694
|
|
5
|
-
pyopencl/reduction.py,sha256=CrWJPDYNy4hxtCGgwq2fkWAQXjJ8zMLxV5CEbAh3Wb8,25533
|
|
6
|
-
pyopencl/tools.py,sha256=eZdKtkwY34kPbMR9FuFAmQbDQG8vJdv1az_UPiGNxjE,45940
|
|
7
|
-
pyopencl/elementwise.py,sha256=HxSSpC944TeJkok8LGeNjqRgfKucbjpLEw3IoGOqLGc,38625
|
|
8
|
-
pyopencl/cache.py,sha256=EbTTIxXmrdcgjzqWQl7O_1EG1RqniHg5sjJQS_5LXIs,16000
|
|
9
|
-
pyopencl/__init__.py,sha256=BDkk5adIO4tHSYxxx_O7W4cyTHALwJB1aPpX5BrKep8,81443
|
|
10
|
-
pyopencl/cltypes.py,sha256=Pkr7_oTkQhVHP-1JyfIWiE8ORpkQ3molOL986Sodvl0,4816
|
|
11
|
-
pyopencl/invoker.py,sha256=hL5qMYOJpXEh2X1xbkkDaoYWRXgP-9fISY0N5VtL--8,14060
|
|
12
|
-
pyopencl/ipython_ext.py,sha256=TUgxJa_w7tvXaKj6kPjiXNEKlxrwsJScQCD0khAA1kk,1915
|
|
13
|
-
pyopencl/scan.py,sha256=Z4Ew6NE0VRNhxPItM4M8oCtPdif0yCclW-CcsFqScu0,65638
|
|
14
|
-
pyopencl/_cluda.py,sha256=KKUxizD1iQEuZ_TmmFZNJ8IdXa8x8uT9HgB0nmAlYLw,2074
|
|
15
|
-
pyopencl/_cl.cpython-311-darwin.so,sha256=h3ywqI4revxqmJm3AI-CfCKsF5wd1zElTmaPEK5S7p8,539832
|
|
16
|
-
pyopencl/_mymako.py,sha256=WzmwJ-9EyenDo6RNOcXZmVum886PsmPS2gLNmUBORsA,620
|
|
17
|
-
pyopencl/array.py,sha256=tENUt-t3tso0LjQS4o6s2nXFwIOxzazOeTS3V-YpN2M,109612
|
|
18
|
-
pyopencl/bitonic_sort.py,sha256=cHd7PHX0arDGJbhaB7AJVI9THVJE69lGuGiB08zeZJ0,8021
|
|
19
|
-
pyopencl/bitonic_sort_templates.py,sha256=x2hJaR-9AO74C_X7bVTTSxQxGqoDrF2-nQxzmMCSCXs,16151
|
|
20
|
-
pyopencl/clrandom.py,sha256=BciZJkcKaNzmqP8tfGdb5SPI4qMACSUtLbQTJaOT5kE,13044
|
|
21
|
-
pyopencl/compyte/pyproject.toml,sha256=wFWDwx-uZHS1OR-em5Rzdfw2w3Ve4Y1IMO3Edg_dgB4,1218
|
|
22
|
-
pyopencl/compyte/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
-
pyopencl/compyte/dtypes.py,sha256=OceW5dP7F0FGPUe4UgFBLX2mnUWFqAGc1vH-xhe6bNg,9843
|
|
24
|
-
pyopencl/compyte/.gitignore,sha256=HVYtbKRtOCPWZavrgYqO2u7UKFiE7g7ympmuQzKbBBw,168
|
|
25
|
-
pyopencl/compyte/array.py,sha256=9dUSCSb475naOADXWhgpQb72Yx1FjKWMEaU6jRwdq90,7422
|
|
26
|
-
pyopencl/characterize/__init__.py,sha256=MM56Q4P2IH-piykKeenHgsXYnAcB2HiTj0ftnYVYNVc,14346
|
|
27
|
-
pyopencl/characterize/performance.py,sha256=TD8-cNnGnn46sQwfR5xNF2nr8yQcrmhuzJaYB13pSqk,6866
|
|
28
|
-
pyopencl/cl/pyopencl-bessel-y.cl,sha256=VDy8l4lVxO8VcJR_maeGu_Qjnw27j28zBwhaTKDhBBg,12297
|
|
29
|
-
pyopencl/cl/pyopencl-hankel-complex.cl,sha256=JSm38L6cOdnDssVqzKCNgjMrILT5ExkYAxz7i8rQBtA,31561
|
|
30
|
-
pyopencl/cl/pyopencl-bessel-j.cl,sha256=69d5WoqajYSubLgA6OVwYw0yOHGt64zY97J8isnsQgU,23274
|
|
31
|
-
pyopencl/cl/pyopencl-bessel-j-complex.cl,sha256=o-17yK_wBFqRiGgTYHg9waooTEKt1SCoguMUbg2LOB0,6026
|
|
32
|
-
pyopencl/cl/pyopencl-airy.cl,sha256=S6S84BX6v6E9ZuGB7mdbFygUY99BaManrWMf47Ms7NA,8122
|
|
33
|
-
pyopencl/cl/pyopencl-eval-tbl.cl,sha256=YNi_hyeE4GtDwzx3mLOMRIHh9jOOzMwSv-F2F1lMevg,2616
|
|
34
|
-
pyopencl/cl/pyopencl-complex.h,sha256=gy7Ge9tuDeLYdpM8KIvKK347AxK5XPFhlVjJfgPtIlI,8544
|
|
35
|
-
pyopencl/cl/pyopencl-random123/threefry.cl,sha256=2WmQGxx5gPSv22UL9_MlXv0eMug91k3bC-5_yQ4wlnI,54699
|
|
36
|
-
pyopencl/cl/pyopencl-random123/philox.cl,sha256=vYcQH7Vw13Q3qkW5Nhy1HTUDbWLGKoloE1YP0VWk6vU,21740
|
|
37
|
-
pyopencl/cl/pyopencl-random123/array.h,sha256=nIV0zDWYuybldNgtsh79icNtDXHYdDsSpFaWIvDTyw4,17088
|
|
38
|
-
pyopencl/cl/pyopencl-random123/openclfeatures.h,sha256=pAPbl7JkQgJxulSuGGevpaI43P7PwiH2mYxtNfHq59M,2881
|
|
39
|
-
pyopencl-2025.1.dist-info/RECORD,,
|
|
40
|
-
pyopencl-2025.1.dist-info/WHEEL,sha256=vqMBchNIsmW0K9HInUQuY_xePW9YD3coNJy6G1Yfto8,114
|
|
41
|
-
pyopencl-2025.1.dist-info/METADATA,sha256=WUY6JEb89dxhMwOVvX9OJVBYPqzlqPNt1TypeIxsCkQ,4783
|
|
42
|
-
pyopencl-2025.1.dist-info/licenses/LICENSE,sha256=wiBvs-UC54bB5DswWuvB66B96b4hkYw_VLt8IR0cBPI,15284
|
|
File without changes
|