pyopencl 2023.1.4__cp311-cp311-macosx_11_0_arm64.whl → 2024.2__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.

Files changed (107) hide show
  1. pyopencl/__init__.py +82 -80
  2. pyopencl/_cl.cpython-311-darwin.so +0 -0
  3. pyopencl/algorithm.py +8 -10
  4. pyopencl/array.py +16 -12
  5. pyopencl/bitonic_sort.py +5 -4
  6. pyopencl/cache.py +22 -22
  7. pyopencl/capture_call.py +4 -3
  8. pyopencl/characterize/__init__.py +4 -2
  9. pyopencl/characterize/performance.py +2 -1
  10. pyopencl/clmath.py +2 -1
  11. pyopencl/clrandom.py +5 -369
  12. pyopencl/cltypes.py +4 -1
  13. pyopencl/compyte/dtypes.py +1 -1
  14. pyopencl/compyte/ndarray/gen_elemwise.py +6 -5
  15. pyopencl/compyte/ndarray/gen_reduction.py +6 -6
  16. pyopencl/compyte/ndarray/setup_opencl.py +3 -2
  17. pyopencl/compyte/ndarray/test_gpu_elemwise.py +5 -4
  18. pyopencl/compyte/ndarray/test_gpu_ndarray.py +0 -1
  19. pyopencl/elementwise.py +4 -6
  20. pyopencl/invoker.py +15 -9
  21. pyopencl/ipython_ext.py +1 -1
  22. pyopencl/reduction.py +5 -5
  23. pyopencl/scan.py +17 -21
  24. pyopencl/tools.py +13 -16
  25. pyopencl/version.py +1 -1
  26. pyopencl-2024.2.data/data/CITATION.cff +74 -0
  27. {pyopencl-2023.1.4.dist-info → pyopencl-2024.2.data/data}/LICENSE +0 -23
  28. pyopencl-2024.2.data/data/Makefile.in +21 -0
  29. pyopencl-2024.2.data/data/README.rst +70 -0
  30. pyopencl-2024.2.data/data/README_SETUP.txt +34 -0
  31. pyopencl-2024.2.data/data/aksetup_helper.py +1013 -0
  32. pyopencl-2024.2.data/data/configure.py +6 -0
  33. pyopencl-2024.2.data/data/contrib/cldis.py +91 -0
  34. pyopencl-2024.2.data/data/contrib/fortran-to-opencl/README +29 -0
  35. pyopencl-2024.2.data/data/contrib/fortran-to-opencl/translate.py +1441 -0
  36. pyopencl-2024.2.data/data/contrib/pyopencl.vim +84 -0
  37. pyopencl-2024.2.data/data/doc/Makefile +23 -0
  38. pyopencl-2024.2.data/data/doc/algorithm.rst +214 -0
  39. pyopencl-2024.2.data/data/doc/array.rst +305 -0
  40. pyopencl-2024.2.data/data/doc/conf.py +26 -0
  41. pyopencl-2024.2.data/data/doc/howto.rst +105 -0
  42. pyopencl-2024.2.data/data/doc/index.rst +137 -0
  43. pyopencl-2024.2.data/data/doc/make_constants.py +561 -0
  44. pyopencl-2024.2.data/data/doc/misc.rst +885 -0
  45. pyopencl-2024.2.data/data/doc/runtime.rst +51 -0
  46. pyopencl-2024.2.data/data/doc/runtime_const.rst +30 -0
  47. pyopencl-2024.2.data/data/doc/runtime_gl.rst +78 -0
  48. pyopencl-2024.2.data/data/doc/runtime_memory.rst +527 -0
  49. pyopencl-2024.2.data/data/doc/runtime_platform.rst +184 -0
  50. pyopencl-2024.2.data/data/doc/runtime_program.rst +364 -0
  51. pyopencl-2024.2.data/data/doc/runtime_queue.rst +182 -0
  52. pyopencl-2024.2.data/data/doc/subst.rst +36 -0
  53. pyopencl-2024.2.data/data/doc/tools.rst +4 -0
  54. pyopencl-2024.2.data/data/doc/types.rst +42 -0
  55. pyopencl-2024.2.data/data/examples/black-hole-accretion.py +2227 -0
  56. pyopencl-2024.2.data/data/examples/demo-struct-reduce.py +75 -0
  57. pyopencl-2024.2.data/data/examples/demo.py +39 -0
  58. pyopencl-2024.2.data/data/examples/demo_array.py +32 -0
  59. pyopencl-2024.2.data/data/examples/demo_array_svm.py +37 -0
  60. pyopencl-2024.2.data/data/examples/demo_elementwise.py +34 -0
  61. pyopencl-2024.2.data/data/examples/demo_elementwise_complex.py +53 -0
  62. pyopencl-2024.2.data/data/examples/demo_mandelbrot.py +183 -0
  63. pyopencl-2024.2.data/data/examples/demo_meta_codepy.py +56 -0
  64. pyopencl-2024.2.data/data/examples/demo_meta_template.py +55 -0
  65. pyopencl-2024.2.data/data/examples/dump-performance.py +38 -0
  66. pyopencl-2024.2.data/data/examples/dump-properties.py +86 -0
  67. pyopencl-2024.2.data/data/examples/gl_interop_demo.py +84 -0
  68. pyopencl-2024.2.data/data/examples/gl_particle_animation.py +218 -0
  69. pyopencl-2024.2.data/data/examples/ipython-demo.ipynb +203 -0
  70. pyopencl-2024.2.data/data/examples/median-filter.py +99 -0
  71. pyopencl-2024.2.data/data/examples/n-body.py +1070 -0
  72. pyopencl-2024.2.data/data/examples/narray.py +37 -0
  73. pyopencl-2024.2.data/data/examples/noisyImage.jpg +0 -0
  74. pyopencl-2024.2.data/data/examples/pi-monte-carlo.py +1166 -0
  75. pyopencl-2024.2.data/data/examples/svm.py +82 -0
  76. pyopencl-2024.2.data/data/examples/transpose.py +229 -0
  77. pyopencl-2024.2.data/data/pytest.ini +3 -0
  78. pyopencl-2024.2.data/data/src/bitlog.cpp +51 -0
  79. pyopencl-2024.2.data/data/src/bitlog.hpp +83 -0
  80. pyopencl-2024.2.data/data/src/clinfo_ext.h +134 -0
  81. pyopencl-2024.2.data/data/src/mempool.hpp +444 -0
  82. pyopencl-2024.2.data/data/src/pyopencl_ext.h +77 -0
  83. pyopencl-2024.2.data/data/src/tools.hpp +90 -0
  84. pyopencl-2024.2.data/data/src/wrap_cl.cpp +61 -0
  85. pyopencl-2024.2.data/data/src/wrap_cl.hpp +5853 -0
  86. pyopencl-2024.2.data/data/src/wrap_cl_part_1.cpp +369 -0
  87. pyopencl-2024.2.data/data/src/wrap_cl_part_2.cpp +702 -0
  88. pyopencl-2024.2.data/data/src/wrap_constants.cpp +1274 -0
  89. pyopencl-2024.2.data/data/src/wrap_helpers.hpp +213 -0
  90. pyopencl-2024.2.data/data/src/wrap_mempool.cpp +731 -0
  91. pyopencl-2024.2.data/data/test/add-vectors-32.spv +0 -0
  92. pyopencl-2024.2.data/data/test/add-vectors-64.spv +0 -0
  93. pyopencl-2024.2.data/data/test/empty-header.h +1 -0
  94. pyopencl-2024.2.data/data/test/test_algorithm.py +1180 -0
  95. pyopencl-2024.2.data/data/test/test_array.py +2392 -0
  96. pyopencl-2024.2.data/data/test/test_arrays_in_structs.py +100 -0
  97. pyopencl-2024.2.data/data/test/test_clmath.py +529 -0
  98. pyopencl-2024.2.data/data/test/test_clrandom.py +75 -0
  99. pyopencl-2024.2.data/data/test/test_enqueue_copy.py +271 -0
  100. pyopencl-2024.2.data/data/test/test_wrapper.py +1554 -0
  101. pyopencl-2024.2.dist-info/LICENSE +282 -0
  102. {pyopencl-2023.1.4.dist-info → pyopencl-2024.2.dist-info}/METADATA +12 -12
  103. pyopencl-2024.2.dist-info/RECORD +122 -0
  104. {pyopencl-2023.1.4.dist-info → pyopencl-2024.2.dist-info}/WHEEL +1 -1
  105. pyopencl/cl/pyopencl-ranluxcl.cl +0 -957
  106. pyopencl-2023.1.4.dist-info/RECORD +0 -48
  107. {pyopencl-2023.1.4.dist-info → pyopencl-2024.2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,282 @@
1
+ PyOpenCL is licensed to you under the MIT/X Consortium license:
2
+
3
+ Copyright (c) 2009-13 Andreas Klöckner and Contributors.
4
+
5
+ Permission is hereby granted, free of charge, to any person
6
+ obtaining a copy of this software and associated documentation
7
+ files (the "Software"), to deal in the Software without
8
+ restriction, including without limitation the rights to use,
9
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the
11
+ Software is furnished to do so, subject to the following
12
+ conditions:
13
+
14
+ The above copyright notice and this permission notice shall be
15
+ included in all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
19
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
21
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
22
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24
+ OTHER DEALINGS IN THE SOFTWARE.
25
+
26
+ PyOpenCL includes derivatives of parts of the `Thrust
27
+ <https://github.com/NVIDIA/thrust>`_ computing package (in particular the scan
28
+ implementation). These parts are licensed as follows:
29
+
30
+ Copyright 2008-2011 NVIDIA Corporation
31
+
32
+ Licensed under the Apache License, Version 2.0 (the "License");
33
+ you may not use this file except in compliance with the License.
34
+ You may obtain a copy of the License at
35
+
36
+ <https://www.apache.org/licenses/LICENSE-2.0>
37
+
38
+ Unless required by applicable law or agreed to in writing, software
39
+ distributed under the License is distributed on an "AS IS" BASIS,
40
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
41
+ See the License for the specific language governing permissions and
42
+ limitations under the License.
43
+
44
+ .. note::
45
+
46
+ If you use Apache-licensed parts, be aware that these may be incompatible
47
+ with software licensed exclusively under GPL2. (Most software is licensed
48
+ as GPL2 or later, in which case this is not an issue.)
49
+
50
+ PyOpenCL includes parts of the Random123 suite of random number generators:
51
+
52
+ Copyright 2010-2012, D. E. Shaw Research.
53
+ All rights reserved.
54
+
55
+ Redistribution and use in source and binary forms, with or without
56
+ modification, are permitted provided that the following conditions are
57
+ met:
58
+
59
+ * Redistributions of source code must retain the above copyright
60
+ notice, this list of conditions, and the following disclaimer.
61
+
62
+ * Redistributions in binary form must reproduce the above copyright
63
+ notice, this list of conditions, and the following disclaimer in the
64
+ documentation and/or other materials provided with the distribution.
65
+
66
+ * Neither the name of D. E. Shaw Research nor the names of its
67
+ contributors may be used to endorse or promote products derived from
68
+ this software without specific prior written permission.
69
+
70
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
71
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
72
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
73
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
74
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
75
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
76
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
77
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
78
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
79
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
80
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
81
+ PyOpenCL wheel includes Khronos Group OpenCL-ICD-Loader which is licensed as below
82
+ Apache License
83
+ Version 2.0, January 2004
84
+ http://www.apache.org/licenses/
85
+
86
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
87
+
88
+ 1. Definitions.
89
+
90
+ "License" shall mean the terms and conditions for use, reproduction,
91
+ and distribution as defined by Sections 1 through 9 of this document.
92
+
93
+ "Licensor" shall mean the copyright owner or entity authorized by
94
+ the copyright owner that is granting the License.
95
+
96
+ "Legal Entity" shall mean the union of the acting entity and all
97
+ other entities that control, are controlled by, or are under common
98
+ control with that entity. For the purposes of this definition,
99
+ "control" means (i) the power, direct or indirect, to cause the
100
+ direction or management of such entity, whether by contract or
101
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
102
+ outstanding shares, or (iii) beneficial ownership of such entity.
103
+
104
+ "You" (or "Your") shall mean an individual or Legal Entity
105
+ exercising permissions granted by this License.
106
+
107
+ "Source" form shall mean the preferred form for making modifications,
108
+ including but not limited to software source code, documentation
109
+ source, and configuration files.
110
+
111
+ "Object" form shall mean any form resulting from mechanical
112
+ transformation or translation of a Source form, including but
113
+ not limited to compiled object code, generated documentation,
114
+ and conversions to other media types.
115
+
116
+ "Work" shall mean the work of authorship, whether in Source or
117
+ Object form, made available under the License, as indicated by a
118
+ copyright notice that is included in or attached to the work
119
+ (an example is provided in the Appendix below).
120
+
121
+ "Derivative Works" shall mean any work, whether in Source or Object
122
+ form, that is based on (or derived from) the Work and for which the
123
+ editorial revisions, annotations, elaborations, or other modifications
124
+ represent, as a whole, an original work of authorship. For the purposes
125
+ of this License, Derivative Works shall not include works that remain
126
+ separable from, or merely link (or bind by name) to the interfaces of,
127
+ the Work and Derivative Works thereof.
128
+
129
+ "Contribution" shall mean any work of authorship, including
130
+ the original version of the Work and any modifications or additions
131
+ to that Work or Derivative Works thereof, that is intentionally
132
+ submitted to Licensor for inclusion in the Work by the copyright owner
133
+ or by an individual or Legal Entity authorized to submit on behalf of
134
+ the copyright owner. For the purposes of this definition, "submitted"
135
+ means any form of electronic, verbal, or written communication sent
136
+ to the Licensor or its representatives, including but not limited to
137
+ communication on electronic mailing lists, source code control systems,
138
+ and issue tracking systems that are managed by, or on behalf of, the
139
+ Licensor for the purpose of discussing and improving the Work, but
140
+ excluding communication that is conspicuously marked or otherwise
141
+ designated in writing by the copyright owner as "Not a Contribution."
142
+
143
+ "Contributor" shall mean Licensor and any individual or Legal Entity
144
+ on behalf of whom a Contribution has been received by Licensor and
145
+ subsequently incorporated within the Work.
146
+
147
+ 2. Grant of Copyright License. Subject to the terms and conditions of
148
+ this License, each Contributor hereby grants to You a perpetual,
149
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
150
+ copyright license to reproduce, prepare Derivative Works of,
151
+ publicly display, publicly perform, sublicense, and distribute the
152
+ Work and such Derivative Works in Source or Object form.
153
+
154
+ 3. Grant of Patent License. Subject to the terms and conditions of
155
+ this License, each Contributor hereby grants to You a perpetual,
156
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
157
+ (except as stated in this section) patent license to make, have made,
158
+ use, offer to sell, sell, import, and otherwise transfer the Work,
159
+ where such license applies only to those patent claims licensable
160
+ by such Contributor that are necessarily infringed by their
161
+ Contribution(s) alone or by combination of their Contribution(s)
162
+ with the Work to which such Contribution(s) was submitted. If You
163
+ institute patent litigation against any entity (including a
164
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
165
+ or a Contribution incorporated within the Work constitutes direct
166
+ or contributory patent infringement, then any patent licenses
167
+ granted to You under this License for that Work shall terminate
168
+ as of the date such litigation is filed.
169
+
170
+ 4. Redistribution. You may reproduce and distribute copies of the
171
+ Work or Derivative Works thereof in any medium, with or without
172
+ modifications, and in Source or Object form, provided that You
173
+ meet the following conditions:
174
+
175
+ (a) You must give any other recipients of the Work or
176
+ Derivative Works a copy of this License; and
177
+
178
+ (b) You must cause any modified files to carry prominent notices
179
+ stating that You changed the files; and
180
+
181
+ (c) You must retain, in the Source form of any Derivative Works
182
+ that You distribute, all copyright, patent, trademark, and
183
+ attribution notices from the Source form of the Work,
184
+ excluding those notices that do not pertain to any part of
185
+ the Derivative Works; and
186
+
187
+ (d) If the Work includes a "NOTICE" text file as part of its
188
+ distribution, then any Derivative Works that You distribute must
189
+ include a readable copy of the attribution notices contained
190
+ within such NOTICE file, excluding those notices that do not
191
+ pertain to any part of the Derivative Works, in at least one
192
+ of the following places: within a NOTICE text file distributed
193
+ as part of the Derivative Works; within the Source form or
194
+ documentation, if provided along with the Derivative Works; or,
195
+ within a display generated by the Derivative Works, if and
196
+ wherever such third-party notices normally appear. The contents
197
+ of the NOTICE file are for informational purposes only and
198
+ do not modify the License. You may add Your own attribution
199
+ notices within Derivative Works that You distribute, alongside
200
+ or as an addendum to the NOTICE text from the Work, provided
201
+ that such additional attribution notices cannot be construed
202
+ as modifying the License.
203
+
204
+ You may add Your own copyright statement to Your modifications and
205
+ may provide additional or different license terms and conditions
206
+ for use, reproduction, or distribution of Your modifications, or
207
+ for any such Derivative Works as a whole, provided Your use,
208
+ reproduction, and distribution of the Work otherwise complies with
209
+ the conditions stated in this License.
210
+
211
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
212
+ any Contribution intentionally submitted for inclusion in the Work
213
+ by You to the Licensor shall be under the terms and conditions of
214
+ this License, without any additional terms or conditions.
215
+ Notwithstanding the above, nothing herein shall supersede or modify
216
+ the terms of any separate license agreement you may have executed
217
+ with Licensor regarding such Contributions.
218
+
219
+ 6. Trademarks. This License does not grant permission to use the trade
220
+ names, trademarks, service marks, or product names of the Licensor,
221
+ except as required for reasonable and customary use in describing the
222
+ origin of the Work and reproducing the content of the NOTICE file.
223
+
224
+ 7. Disclaimer of Warranty. Unless required by applicable law or
225
+ agreed to in writing, Licensor provides the Work (and each
226
+ Contributor provides its Contributions) on an "AS IS" BASIS,
227
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
228
+ implied, including, without limitation, any warranties or conditions
229
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
230
+ PARTICULAR PURPOSE. You are solely responsible for determining the
231
+ appropriateness of using or redistributing the Work and assume any
232
+ risks associated with Your exercise of permissions under this License.
233
+
234
+ 8. Limitation of Liability. In no event and under no legal theory,
235
+ whether in tort (including negligence), contract, or otherwise,
236
+ unless required by applicable law (such as deliberate and grossly
237
+ negligent acts) or agreed to in writing, shall any Contributor be
238
+ liable to You for damages, including any direct, indirect, special,
239
+ incidental, or consequential damages of any character arising as a
240
+ result of this License or out of the use or inability to use the
241
+ Work (including but not limited to damages for loss of goodwill,
242
+ work stoppage, computer failure or malfunction, or any and all
243
+ other commercial damages or losses), even if such Contributor
244
+ has been advised of the possibility of such damages.
245
+
246
+ 9. Accepting Warranty or Additional Liability. While redistributing
247
+ the Work or Derivative Works thereof, You may choose to offer,
248
+ and charge a fee for, acceptance of support, warranty, indemnity,
249
+ or other liability obligations and/or rights consistent with this
250
+ License. However, in accepting such obligations, You may act only
251
+ on Your own behalf and on Your sole responsibility, not on behalf
252
+ of any other Contributor, and only if You agree to indemnify,
253
+ defend, and hold each Contributor harmless for any liability
254
+ incurred by, or claims asserted against, such Contributor by reason
255
+ of your accepting any such warranty or additional liability.
256
+
257
+ END OF TERMS AND CONDITIONS
258
+
259
+ APPENDIX: How to apply the Apache License to your work.
260
+
261
+ To apply the Apache License to your work, attach the following
262
+ boilerplate notice, with the fields enclosed by brackets "[]"
263
+ replaced with your own identifying information. (Don't include
264
+ the brackets!) The text should be enclosed in the appropriate
265
+ comment syntax for the file format. We also recommend that a
266
+ file or class name and description of purpose be included on the
267
+ same "printed page" as the copyright notice for easier
268
+ identification within third-party archives.
269
+
270
+ Copyright [yyyy] [name of copyright owner]
271
+
272
+ Licensed under the Apache License, Version 2.0 (the "License");
273
+ you may not use this file except in compliance with the License.
274
+ You may obtain a copy of the License at
275
+
276
+ http://www.apache.org/licenses/LICENSE-2.0
277
+
278
+ Unless required by applicable law or agreed to in writing, software
279
+ distributed under the License is distributed on an "AS IS" BASIS,
280
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
281
+ See the License for the specific language governing permissions and
282
+ limitations under the License.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyopencl
3
- Version: 2023.1.4
3
+ Version: 2024.2
4
4
  Summary: Python wrapper for OpenCL
5
5
  Home-page: http://mathema.tician.de/software/pyopencl
6
6
  Author: Andreas Kloeckner
@@ -22,8 +22,9 @@ Classifier: Topic :: Scientific/Engineering :: Physics
22
22
  Requires-Python: ~=3.8
23
23
  License-File: LICENSE
24
24
  Requires-Dist: numpy
25
- Requires-Dist: pytools >=2021.2.7
25
+ Requires-Dist: pytools >=2022.1.13
26
26
  Requires-Dist: platformdirs >=2.2.0
27
+ Requires-Dist: importlib-resources ; python_version < "3.9"
27
28
  Provides-Extra: oclgrind
28
29
  Requires-Dist: oclgrind-binary-distribution >=18.3 ; extra == 'oclgrind'
29
30
  Provides-Extra: pocl
@@ -35,19 +36,21 @@ Requires-Dist: Mako ; extra == 'test'
35
36
  PyOpenCL: Pythonic Access to OpenCL, with Arrays and Algorithms
36
37
  ===============================================================
37
38
 
38
- .. image:: https://gitlab.tiker.net/inducer/pyopencl/badges/main/pipeline.svg
39
+ .. |badge-gitlab-ci| image:: https://gitlab.tiker.net/inducer/pyopencl/badges/main/pipeline.svg
39
40
  :alt: Gitlab Build Status
40
41
  :target: https://gitlab.tiker.net/inducer/pyopencl/commits/main
41
- .. image:: https://github.com/inducer/pyopencl/workflows/CI/badge.svg?branch=main&event=push
42
+ .. |badge-github-ci| image:: https://github.com/inducer/pyopencl/workflows/CI/badge.svg?branch=main&event=push
42
43
  :alt: Github Build Status
43
44
  :target: https://github.com/inducer/pyopencl/actions?query=branch%3Amain+workflow%3ACI+event%3Apush
44
- .. image:: https://badge.fury.io/py/pyopencl.svg
45
+ .. |badge-pypi| image:: https://badge.fury.io/py/pyopencl.svg
45
46
  :alt: Python Package Index Release Page
46
47
  :target: https://pypi.org/project/pyopencl/
47
- .. image:: https://zenodo.org/badge/1575307.svg
48
+ .. |badge-zenodo| image:: https://zenodo.org/badge/1575307.svg
48
49
  :alt: Zenodo DOI for latest release
49
50
  :target: https://zenodo.org/badge/latestdoi/1575307
50
51
 
52
+ |badge-gitlab-ci| |badge-github-ci| |badge-pypi| |badge-zenodo|
53
+
51
54
  PyOpenCL lets you access GPUs and other massively parallel compute
52
55
  devices from Python. It tries to offer computing goodness in the
53
56
  spirit of its sister project `PyCUDA <https://mathema.tician.de/software/pycuda>`__:
@@ -84,8 +87,7 @@ can be found in the `documentation <https://documen.tician.de/pyopencl/>`__.
84
87
  What you'll need if you do *not* want to use the convenient instructions above and
85
88
  instead build from source:
86
89
 
87
- * gcc/g++ new enough to be compatible with pybind11
88
- (see their `FAQ <https://pybind11.readthedocs.io/en/stable/faq.html>`__)
90
+ * g++/clang new enough to be compatible with nanobind (specifically, full support of C++17 is needed)
89
91
  * `numpy <https://numpy.org>`__, and
90
92
  * an OpenCL implementation. (See this `howto <https://wiki.tiker.net/OpenCLHowTo>`__
91
93
  for how to get one.)
@@ -95,11 +97,9 @@ Links
95
97
 
96
98
  * `Documentation <https://documen.tician.de/pyopencl>`__
97
99
  (read how things work)
100
+ * `Python package index <https://pypi.python.org/pypi/pyopencl>`__
101
+ (download releases, including binary wheels for Linux, macOS, Windows)
98
102
  * `Conda Forge <https://anaconda.org/conda-forge/pyopencl>`__
99
103
  (download binary packages for Linux, macOS, Windows)
100
- * `Python package index <https://pypi.python.org/pypi/pyopencl>`__
101
- (download releases)
102
- * `C. Gohlke's Windows binaries <https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyopencl>`__
103
- (download Windows binaries)
104
104
  * `Github <https://github.com/inducer/pyopencl>`__
105
105
  (get latest source code, file bugs)
@@ -0,0 +1,122 @@
1
+ pyopencl-2024.2.dist-info/RECORD,,
2
+ pyopencl-2024.2.dist-info/LICENSE,sha256=wiBvs-UC54bB5DswWuvB66B96b4hkYw_VLt8IR0cBPI,15284
3
+ pyopencl-2024.2.dist-info/WHEEL,sha256=jH3XSGZHY_IH8QuVNNrQp5TM8pAFvAq_wRrOvDwyvrI,104
4
+ pyopencl-2024.2.dist-info/top_level.txt,sha256=XPUBiMQv-BwDR6D6dDoG5u3HOzYMlKiHq0rBWdAMegU,9
5
+ pyopencl-2024.2.dist-info/METADATA,sha256=4zoWUZX9ssXAPDNFt2gG9AxqIccAb-uSZpHj6kLELs4,4546
6
+ pyopencl/algorithm.py,sha256=xWm0064fAzjIU-87_8B0xeYmgfoIpQ6hNcf_go_LuG0,51196
7
+ pyopencl/clmath.py,sha256=lOxQzE6BEp5-nVRuGu0hgxzk_gcx7aTiy_hRFxAPmcI,8222
8
+ pyopencl/version.py,sha256=fZhxAC4lCHXghht-JA_IU_WYwnyF2zIhngI8QRhhiII,106
9
+ pyopencl/capture_call.py,sha256=MJDOVqU6s8rJ5nmd5zOcqNe7GLXad2NwGeTpG60Kau0,5661
10
+ pyopencl/reduction.py,sha256=OZMkLGt5KUp3HG2k0mkXBgF04IGWXzdhuZHy_IAwL1g,25524
11
+ pyopencl/tools.py,sha256=mToNQVD2yQB44UEpBpGOQGC2cI7rQX-QLZjS5UaKL5Y,45510
12
+ pyopencl/elementwise.py,sha256=VMw6A6wGaaBOsxdofjBq9Hyv6l0m9cGKVh2HwsfMuu4,38602
13
+ pyopencl/cache.py,sha256=PltNiHqrAmX7Tgg9BfFdheAHU6qwkg0tjbtCPKKryls,15959
14
+ pyopencl/__init__.py,sha256=HWCCd8XOApQJLKHXdbu28B6AE7kbYSVcd0bjNOn8SZs,80676
15
+ pyopencl/cltypes.py,sha256=DdBVPBU2bRuIbT8ImhWFIQosrefMOkAa4mY4yoSnurc,4818
16
+ pyopencl/invoker.py,sha256=7pjVh0CDkRTNHc1PVQV9Lxhi-0FXvJHtq-jDzLJUypk,13994
17
+ pyopencl/ipython_ext.py,sha256=bN-5I06Nb53_2qE0KfKXxK27Gn4tG3EDj11Az8iTb28,1914
18
+ pyopencl/scan.py,sha256=NbhwamNMcoJaCfeQX2eciQdWEhlAfVxIOTRy5oaUAx8,65500
19
+ pyopencl/_cluda.py,sha256=KKUxizD1iQEuZ_TmmFZNJ8IdXa8x8uT9HgB0nmAlYLw,2074
20
+ pyopencl/_cl.cpython-311-darwin.so,sha256=ArzdffA-gg_2mj-eqeOS_2MoXQNJjOaOMYs7mVQqC04,457494
21
+ pyopencl/_mymako.py,sha256=VnxoyODc-_wVcWhKgQqUYVh_Iun5498Yg4W0WmGhTwk,610
22
+ pyopencl/array.py,sha256=yazv6DHRsKzlMuR0OFMn465RihWpIe_OUAWlAS8oQHE,111717
23
+ pyopencl/bitonic_sort.py,sha256=-DxOnIJTE8I0nCC3AgUs8U60l6yUmDQeGNPgkCWU9YY,7876
24
+ pyopencl/bitonic_sort_templates.py,sha256=Y1de5klU8GRo2pKlh1cZyYf_NBSIPDbhO83VLLnUgmk,16172
25
+ pyopencl/clrandom.py,sha256=wAzoB6U4cNCipy5xbeYrrvDbqx_QFLmp_FeqIAu3K7I,13043
26
+ pyopencl/compyte/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ pyopencl/compyte/dtypes.py,sha256=FQ1KrstfEIV_ikNNvbC1JODX9rLQ-Yo8-QhAwD-4v9I,9809
28
+ pyopencl/compyte/array.py,sha256=9dUSCSb475naOADXWhgpQb72Yx1FjKWMEaU6jRwdq90,7422
29
+ pyopencl/compyte/ndarray/gen_reduction.py,sha256=JrhJ40Q-8PNphso3jliZSVGWzLnA5-pKkDNZTJNRtbA,56315
30
+ pyopencl/compyte/ndarray/test_gpu_elemwise.py,sha256=sZn24yDa3WgK_AoIs6HCL6-UslZf0aYiPByo__PbtJw,18438
31
+ pyopencl/compyte/ndarray/setup_opencl.py,sha256=Xvmj3iaRjBXI2sEzTTYKxgFCoEyDaiP9ZGJ989RLSqc,3809
32
+ pyopencl/compyte/ndarray/gen_elemwise.py,sha256=KZdZZ6higOqGuxpp9aLDECWuL3jT9zuSy8I7cLCAdKY,76820
33
+ pyopencl/compyte/ndarray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
+ pyopencl/compyte/ndarray/test_gpu_ndarray.py,sha256=a0PV3JVH7TG9-jZdBcrJwuqqnWD5LTsOQGr_bftghVA,17781
35
+ pyopencl/characterize/__init__.py,sha256=3ennew7pYhcDH_ZOUEkoPZE4oqFBM6SXDyMPEpp936s,13829
36
+ pyopencl/characterize/performance.py,sha256=TD8-cNnGnn46sQwfR5xNF2nr8yQcrmhuzJaYB13pSqk,6866
37
+ pyopencl/cl/pyopencl-bessel-y.cl,sha256=VDy8l4lVxO8VcJR_maeGu_Qjnw27j28zBwhaTKDhBBg,12297
38
+ pyopencl/cl/pyopencl-hankel-complex.cl,sha256=JSm38L6cOdnDssVqzKCNgjMrILT5ExkYAxz7i8rQBtA,31561
39
+ pyopencl/cl/pyopencl-bessel-j.cl,sha256=69d5WoqajYSubLgA6OVwYw0yOHGt64zY97J8isnsQgU,23274
40
+ pyopencl/cl/pyopencl-bessel-j-complex.cl,sha256=o-17yK_wBFqRiGgTYHg9waooTEKt1SCoguMUbg2LOB0,6026
41
+ pyopencl/cl/pyopencl-airy.cl,sha256=S6S84BX6v6E9ZuGB7mdbFygUY99BaManrWMf47Ms7NA,8122
42
+ pyopencl/cl/pyopencl-eval-tbl.cl,sha256=YNi_hyeE4GtDwzx3mLOMRIHh9jOOzMwSv-F2F1lMevg,2616
43
+ pyopencl/cl/pyopencl-complex.h,sha256=gy7Ge9tuDeLYdpM8KIvKK347AxK5XPFhlVjJfgPtIlI,8544
44
+ pyopencl/cl/pyopencl-random123/threefry.cl,sha256=2WmQGxx5gPSv22UL9_MlXv0eMug91k3bC-5_yQ4wlnI,54699
45
+ pyopencl/cl/pyopencl-random123/philox.cl,sha256=vYcQH7Vw13Q3qkW5Nhy1HTUDbWLGKoloE1YP0VWk6vU,21740
46
+ pyopencl/cl/pyopencl-random123/array.h,sha256=nIV0zDWYuybldNgtsh79icNtDXHYdDsSpFaWIvDTyw4,17088
47
+ pyopencl/cl/pyopencl-random123/openclfeatures.h,sha256=pAPbl7JkQgJxulSuGGevpaI43P7PwiH2mYxtNfHq59M,2881
48
+ pyopencl-2024.2.data/data/configure.py,sha256=6PMl0m82-uByHu5whlhiIlxSCgsFy6qzbqzdBWePric,94
49
+ pyopencl-2024.2.data/data/pytest.ini,sha256=iUwTFBI0nIVs_6c36v4B_aJ4w_zyyJAdlZ_G60Yg6SI,64
50
+ pyopencl-2024.2.data/data/LICENSE,sha256=wiBvs-UC54bB5DswWuvB66B96b4hkYw_VLt8IR0cBPI,15284
51
+ pyopencl-2024.2.data/data/aksetup_helper.py,sha256=W1-o9bU49ucJzisgfC1NAPKUTBXJdB_qz9ySeul56jw,32285
52
+ pyopencl-2024.2.data/data/CITATION.cff,sha256=J55YPpGIjFCI9sKkn3tg9Fau16IENnQbWFX6TQOrmGM,1910
53
+ pyopencl-2024.2.data/data/README.rst,sha256=wXYfuE5V-NphaD3m7muPoHrneW0jdT4E6NsX_p-wpKg,3233
54
+ pyopencl-2024.2.data/data/Makefile.in,sha256=-BGxu_WQIb7eAIQhqiKVlm6krcBsYJSRwipn3zfdTfE,323
55
+ pyopencl-2024.2.data/data/README_SETUP.txt,sha256=OBLj_NCRZ59irh8mIQUIt4zHA1rsDQ7JibXIEL3G3f4,1090
56
+ pyopencl-2024.2.data/data/test/add-vectors-64.spv,sha256=KvRwrVbPe-Jaq0cf6T6Bsh2XCK2-1_jHNT-t1kTebkk,952
57
+ pyopencl-2024.2.data/data/test/test_arrays_in_structs.py,sha256=1M6fLykUvZEkkB8cWPHLgMYIK_Vkhf7MmsBjVEVXXIo,3515
58
+ pyopencl-2024.2.data/data/test/test_wrapper.py,sha256=7liWw3ALZj6oP6A9GzISBNO12eNPNQYE3FbxeN8tp8k,44638
59
+ pyopencl-2024.2.data/data/test/test_array.py,sha256=-lHK2Ja2-dFNfvMN6GwgdImRBhuGY53yHXM3F8pU0Qc,63792
60
+ pyopencl-2024.2.data/data/test/test_enqueue_copy.py,sha256=aQLPjANaTVg1GQVd2bdgv2Q677wud6njV-XxR6w4tW0,9776
61
+ pyopencl-2024.2.data/data/test/add-vectors-32.spv,sha256=uEpKzFLNOwHpXHgGHXE9P5U9uH_aF3Uk0ZyV0FebijA,792
62
+ pyopencl-2024.2.data/data/test/test_clmath.py,sha256=kj-o5LU9HVlWM3dSV1O1q4SYugfHJ9Ii2z6XpXMjIWk,16184
63
+ pyopencl-2024.2.data/data/test/empty-header.h,sha256=mbC-wTSzvwtpttp1gZ4gLo9IunXus1YwQjRzkeQ-LtY,27
64
+ pyopencl-2024.2.data/data/test/test_clrandom.py,sha256=LlU8ZlB6iEVd4_H_pWX6NPhRHCR16udp1UVBi-CGR3Q,2460
65
+ pyopencl-2024.2.data/data/test/test_algorithm.py,sha256=AolFreBwt_mvPScsQ4LMuxV-KJVhn_ge1YK99k23LCY,35331
66
+ pyopencl-2024.2.data/data/contrib/pyopencl.vim,sha256=5MET-7TT-pWW5ehlxO4kbBOWh7HdBNGVkmVU4xLU56Q,2379
67
+ pyopencl-2024.2.data/data/contrib/cldis.py,sha256=R9C0PC_-FDtOXxONp6oQ4AR1gPLGQOI2r_CfqcmJJOs,3638
68
+ pyopencl-2024.2.data/data/contrib/fortran-to-opencl/translate.py,sha256=i6fx2B8wiHS98tqWUb4aazsBix3vsLQJ9xAe4-YMT4o,43618
69
+ pyopencl-2024.2.data/data/contrib/fortran-to-opencl/README,sha256=guhXKkiCk4W28W9GwbY5PLuFHoj5AJ6pMOChkAnVM8s,889
70
+ pyopencl-2024.2.data/data/examples/demo_meta_template.py,sha256=SI4SIL7aSfq9OuDyWE1hvdiq2l9XcPBFbWN5coUvDo8,1475
71
+ pyopencl-2024.2.data/data/examples/black-hole-accretion.py,sha256=bD59oXPTcFUp2Gn-ln7V6lUZ7SPPicv9V9LSn4xhqVs,54750
72
+ pyopencl-2024.2.data/data/examples/noisyImage.jpg,sha256=QY_aUt15xoBzlR9K8stnVhFv70Uu7K8vU5MTCQqg4Go,66806
73
+ pyopencl-2024.2.data/data/examples/dump-performance.py,sha256=wDTcw6PguAo25nrXadwio19mRSvzY2jsq7YGmLsNqKY,1332
74
+ pyopencl-2024.2.data/data/examples/demo_array_svm.py,sha256=6rtw0Ksf6p1IyBGmq0DUTTvG3fTOaeVTKdyUZS5mX3o,938
75
+ pyopencl-2024.2.data/data/examples/demo_meta_codepy.py,sha256=qiOKzRt7OkDOhcOnXuqwQ0buuVamq3FwpzqDvnLpBuE,1707
76
+ pyopencl-2024.2.data/data/examples/demo-struct-reduce.py,sha256=rP7wFHgoW1SEFUYi4XF6jizaQXPZxnhiphPJr5KMDAk,1824
77
+ pyopencl-2024.2.data/data/examples/narray.py,sha256=QW3K9GCK884BvaEwOZL4sKv_OZkRwQDBSuCaRAF3B2o,707
78
+ pyopencl-2024.2.data/data/examples/demo_mandelbrot.py,sha256=5yBBV3cSHgObzEe1eUzK-AnMFI9qsOJbw9KUQExroqY,5051
79
+ pyopencl-2024.2.data/data/examples/gl_interop_demo.py,sha256=ZLqCVGjf2e6thBUdEZnnEKObz-AfNPEG-b3mq2XjBkQ,2435
80
+ pyopencl-2024.2.data/data/examples/transpose.py,sha256=n9anLgDEhoUpwbtngyMTAYDjdwm5IjM114VuXUe53QI,6484
81
+ pyopencl-2024.2.data/data/examples/pi-monte-carlo.py,sha256=njCX2LTJJsRmb8uTIfQ20DbQj8P0qo0h7Z6ni3w8C-o,35442
82
+ pyopencl-2024.2.data/data/examples/dump-properties.py,sha256=nxEDwxE02pZnObFHX_pR3hYSV7suobu6AoyxIH8okcI,3284
83
+ pyopencl-2024.2.data/data/examples/median-filter.py,sha256=4nB02yraVX7_IyfX3BmaE2Sfs6NF9vP5IFS2iLx4d7k,2648
84
+ pyopencl-2024.2.data/data/examples/ipython-demo.ipynb,sha256=PGN-soEKRaKN-PY1IapFKZHih3DuWEUEtYlF-0xpTRE,3985
85
+ pyopencl-2024.2.data/data/examples/gl_particle_animation.py,sha256=QKa34SjZ7yApidHT8I9OI8kV_MTEDXXbgdihxlja0vE,6534
86
+ pyopencl-2024.2.data/data/examples/demo.py,sha256=5pEvCp9ibQFCwwl6gaXbVJ21ow-OSVR-eU8RZuR7VHk,1013
87
+ pyopencl-2024.2.data/data/examples/svm.py,sha256=k1xSNznuiOC0kvM5VmZOlZXlL2wbEfDEoMXQe3dimFs,1981
88
+ pyopencl-2024.2.data/data/examples/demo_array.py,sha256=ulZcesUR3toklN24iglqLRj7e4lsec6vRnTSjFDwbmw,838
89
+ pyopencl-2024.2.data/data/examples/demo_elementwise.py,sha256=D9yX2g1T-Lp6L--8fsBobj0JGdNaRNdOH3SDIs1V3s4,817
90
+ pyopencl-2024.2.data/data/examples/demo_elementwise_complex.py,sha256=mctAYp6rlrP7U79-mKQwAxZ3bmdemGTQ2_mcTaG0vx8,1525
91
+ pyopencl-2024.2.data/data/examples/n-body.py,sha256=l9awEk0jQvwsUTdJfRtQVN25e4sqZLBkNg6Q4Bc8Ymk,32124
92
+ pyopencl-2024.2.data/data/doc/runtime_gl.rst,sha256=hAZgKepkkc7fjv9gjO2ACBuKuJrd8yOaSX3u-8AmCzw,2206
93
+ pyopencl-2024.2.data/data/doc/index.rst,sha256=OqwduJgVRVc7KtByzL7S4LfuYRxq2WstQV98CMqHQ6o,5465
94
+ pyopencl-2024.2.data/data/doc/runtime.rst,sha256=StkJ3BFsoZiu3ywHh7WVS9pG5L8ccXHFqU9Q0hP3GGw,968
95
+ pyopencl-2024.2.data/data/doc/subst.rst,sha256=iWsjseDMPv4Jz_YCSpbXHKMBE1B8iWnfHrBTdWucPBg,2244
96
+ pyopencl-2024.2.data/data/doc/runtime_memory.rst,sha256=0rcQM-VoOLv2mgCGyksfgrZp30zOF5MQurZEa6g6VT8,17090
97
+ pyopencl-2024.2.data/data/doc/runtime_const.rst,sha256=itBrbJiMYKtCu28w39vQ6NpKiBNTEygQFm_Y5mXYHFw,572
98
+ pyopencl-2024.2.data/data/doc/runtime_program.rst,sha256=kprvpZDKRiRVnHrEDH8ySDfBi8UMi2hFKqmEQCLKQrA,12672
99
+ pyopencl-2024.2.data/data/doc/Makefile,sha256=MiJiM8U1If_QhnP2zThQaUFROHmkteNHHTYrIT4uYRI,726
100
+ pyopencl-2024.2.data/data/doc/conf.py,sha256=_NpFL603IwXZ1UvxwAh6SWBjfNTUZpv8ef5WfrI3oyU,861
101
+ pyopencl-2024.2.data/data/doc/tools.rst,sha256=ef29nhP_J9OaftnWDaYf7weMfcn2suF01SfyLG9FhR8,70
102
+ pyopencl-2024.2.data/data/doc/algorithm.rst,sha256=Q1nTPGfvmX73zAEQJ1Lvp-p_D14mfNqxSzC_UPjzcD8,6878
103
+ pyopencl-2024.2.data/data/doc/runtime_queue.rst,sha256=0eyRHFY4yvCPjVKmzbhokigeNUVtl2C3DY2USLi7mno,5231
104
+ pyopencl-2024.2.data/data/doc/array.rst,sha256=d8xpM9Dgs9QcvHuDc41zfBXNyNfHOigfsDszJuO2mzk,8473
105
+ pyopencl-2024.2.data/data/doc/runtime_platform.rst,sha256=ZG8uYvk4bxES7g1LZ1x-FdfI7Vkzbd1i3bhmfeHYz4Y,5634
106
+ pyopencl-2024.2.data/data/doc/misc.rst,sha256=FbdjBdA5jiCJdqkIN6Mre4d5uEh6ylkg_ktJSsS9_88,29441
107
+ pyopencl-2024.2.data/data/doc/types.rst,sha256=6Wz8FYO6xrYK3Mw9P4IRtjlSaQ2NynrKlb-2NmTQq4E,1246
108
+ pyopencl-2024.2.data/data/doc/make_constants.py,sha256=nOIxCBGogm5KE8X_lX1RxL9ZrYhjRwkTFcFqFx8L90g,17804
109
+ pyopencl-2024.2.data/data/doc/howto.rst,sha256=5-lhfKHgBoxSZ0sGZbjbWHPI9k-Veu551HH3eaLRhEA,3432
110
+ pyopencl-2024.2.data/data/src/wrap_cl.cpp,sha256=ezOFyBblvJLwAPXn0oO809KJ6vNZwWod4MUC0nOzIPo,1805
111
+ pyopencl-2024.2.data/data/src/wrap_constants.cpp,sha256=fk0DwJvuJBG4jBSlkH3G0nXanFFTi5OrWgpAk929itw,38496
112
+ pyopencl-2024.2.data/data/src/clinfo_ext.h,sha256=XUmvA3dqMkUZ6YutwSt_KBNE78isLifl2Dtfkgj9G7o,4542
113
+ pyopencl-2024.2.data/data/src/wrap_cl_part_2.cpp,sha256=W3qWVeIkC7cQRYl7fueppsoPAfI9OhAJqtaj5mij2-A,19945
114
+ pyopencl-2024.2.data/data/src/wrap_mempool.cpp,sha256=8nV5kKh-T42NMys2XlKS8T-VEDUg5vijBeS5XEzeUbE,18776
115
+ pyopencl-2024.2.data/data/src/tools.hpp,sha256=m1jHECvEEB5kKlvmxK-iplFo3xXAAPu-jgbFNcpb4Lc,2348
116
+ pyopencl-2024.2.data/data/src/wrap_cl_part_1.cpp,sha256=h0vgqs_w1NGu-UhwoEq96i_5rAWKL-ee62Mn2FezEVE,10872
117
+ pyopencl-2024.2.data/data/src/pyopencl_ext.h,sha256=epvonrF2q6DKV9fg7-ph2ZH1TXQipTm1m58u1kOsIkI,2109
118
+ pyopencl-2024.2.data/data/src/bitlog.hpp,sha256=Miwfs3I4G2Mq9QqCPQz_QyAZg_k_-AbTC7hwdqNONYc,2170
119
+ pyopencl-2024.2.data/data/src/mempool.hpp,sha256=DeZ6XLqzelZbPYCgPIl5LLyMhadyXezCxLp1QyY7bfQ,11806
120
+ pyopencl-2024.2.data/data/src/bitlog.cpp,sha256=C9XSlQqeaIe59gz1iLRGzYUSzNswkeqCbdiWNV6TSIc,2083
121
+ pyopencl-2024.2.data/data/src/wrap_cl.hpp,sha256=E_o7WbXzjMoSakbAQLSNKNHMIjajGrqmkAFGdcJFQKg,165179
122
+ pyopencl-2024.2.data/data/src/wrap_helpers.hpp,sha256=ucXv9gGQpeN9tAV-Gls3V7uCQvby7vlOjLmF9HTIimc,6579
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: skbuild 0.17.6
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp311-cp311-macosx_11_0_arm64
5
5