pyopencl 2024.2.2__cp38-cp38-win_amd64.whl → 2024.2.5__cp38-cp38-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.

Files changed (99) hide show
  1. pyopencl/__init__.py +16 -4
  2. pyopencl/_cl.cp38-win_amd64.pyd +0 -0
  3. pyopencl/algorithm.py +3 -1
  4. pyopencl/bitonic_sort.py +2 -0
  5. pyopencl/characterize/__init__.py +23 -0
  6. pyopencl/compyte/.git +1 -0
  7. pyopencl/compyte/.gitignore +21 -0
  8. pyopencl/compyte/ndarray/Makefile +31 -0
  9. pyopencl/compyte/ndarray/gpu_ndarray.h +35 -0
  10. pyopencl/compyte/ndarray/pygpu_language.h +207 -0
  11. pyopencl/compyte/ndarray/pygpu_language_cuda.cu +622 -0
  12. pyopencl/compyte/ndarray/pygpu_language_opencl.cpp +317 -0
  13. pyopencl/compyte/ndarray/pygpu_ndarray.cpp +1546 -0
  14. pyopencl/compyte/ndarray/pygpu_ndarray.h +71 -0
  15. pyopencl/compyte/ndarray/pygpu_ndarray_object.h +232 -0
  16. pyopencl/tools.py +60 -56
  17. pyopencl/version.py +9 -3
  18. {pyopencl-2024.2.2.dist-info → pyopencl-2024.2.5.dist-info}/METADATA +105 -105
  19. pyopencl-2024.2.5.dist-info/RECORD +56 -0
  20. {pyopencl-2024.2.2.dist-info → pyopencl-2024.2.5.dist-info}/WHEEL +1 -1
  21. pyopencl-2024.2.2.data/data/CITATION.cff +0 -74
  22. pyopencl-2024.2.2.data/data/CMakeLists.txt +0 -83
  23. pyopencl-2024.2.2.data/data/Makefile.in +0 -21
  24. pyopencl-2024.2.2.data/data/README.rst +0 -70
  25. pyopencl-2024.2.2.data/data/README_SETUP.txt +0 -34
  26. pyopencl-2024.2.2.data/data/aksetup_helper.py +0 -1013
  27. pyopencl-2024.2.2.data/data/configure.py +0 -6
  28. pyopencl-2024.2.2.data/data/contrib/cldis.py +0 -91
  29. pyopencl-2024.2.2.data/data/contrib/fortran-to-opencl/README +0 -29
  30. pyopencl-2024.2.2.data/data/contrib/fortran-to-opencl/translate.py +0 -1441
  31. pyopencl-2024.2.2.data/data/contrib/pyopencl.vim +0 -84
  32. pyopencl-2024.2.2.data/data/doc/Makefile +0 -23
  33. pyopencl-2024.2.2.data/data/doc/algorithm.rst +0 -214
  34. pyopencl-2024.2.2.data/data/doc/array.rst +0 -305
  35. pyopencl-2024.2.2.data/data/doc/conf.py +0 -26
  36. pyopencl-2024.2.2.data/data/doc/howto.rst +0 -105
  37. pyopencl-2024.2.2.data/data/doc/index.rst +0 -137
  38. pyopencl-2024.2.2.data/data/doc/make_constants.py +0 -561
  39. pyopencl-2024.2.2.data/data/doc/misc.rst +0 -885
  40. pyopencl-2024.2.2.data/data/doc/runtime.rst +0 -51
  41. pyopencl-2024.2.2.data/data/doc/runtime_const.rst +0 -30
  42. pyopencl-2024.2.2.data/data/doc/runtime_gl.rst +0 -78
  43. pyopencl-2024.2.2.data/data/doc/runtime_memory.rst +0 -527
  44. pyopencl-2024.2.2.data/data/doc/runtime_platform.rst +0 -184
  45. pyopencl-2024.2.2.data/data/doc/runtime_program.rst +0 -364
  46. pyopencl-2024.2.2.data/data/doc/runtime_queue.rst +0 -182
  47. pyopencl-2024.2.2.data/data/doc/subst.rst +0 -36
  48. pyopencl-2024.2.2.data/data/doc/tools.rst +0 -4
  49. pyopencl-2024.2.2.data/data/doc/types.rst +0 -42
  50. pyopencl-2024.2.2.data/data/examples/black-hole-accretion.py +0 -2227
  51. pyopencl-2024.2.2.data/data/examples/demo-struct-reduce.py +0 -75
  52. pyopencl-2024.2.2.data/data/examples/demo.py +0 -39
  53. pyopencl-2024.2.2.data/data/examples/demo_array.py +0 -32
  54. pyopencl-2024.2.2.data/data/examples/demo_array_svm.py +0 -37
  55. pyopencl-2024.2.2.data/data/examples/demo_elementwise.py +0 -34
  56. pyopencl-2024.2.2.data/data/examples/demo_elementwise_complex.py +0 -53
  57. pyopencl-2024.2.2.data/data/examples/demo_mandelbrot.py +0 -183
  58. pyopencl-2024.2.2.data/data/examples/demo_meta_codepy.py +0 -56
  59. pyopencl-2024.2.2.data/data/examples/demo_meta_template.py +0 -55
  60. pyopencl-2024.2.2.data/data/examples/dump-performance.py +0 -38
  61. pyopencl-2024.2.2.data/data/examples/dump-properties.py +0 -86
  62. pyopencl-2024.2.2.data/data/examples/gl_interop_demo.py +0 -84
  63. pyopencl-2024.2.2.data/data/examples/gl_particle_animation.py +0 -218
  64. pyopencl-2024.2.2.data/data/examples/ipython-demo.ipynb +0 -203
  65. pyopencl-2024.2.2.data/data/examples/median-filter.py +0 -99
  66. pyopencl-2024.2.2.data/data/examples/n-body.py +0 -1070
  67. pyopencl-2024.2.2.data/data/examples/narray.py +0 -37
  68. pyopencl-2024.2.2.data/data/examples/noisyImage.jpg +0 -0
  69. pyopencl-2024.2.2.data/data/examples/pi-monte-carlo.py +0 -1166
  70. pyopencl-2024.2.2.data/data/examples/svm.py +0 -82
  71. pyopencl-2024.2.2.data/data/examples/transpose.py +0 -229
  72. pyopencl-2024.2.2.data/data/pytest.ini +0 -3
  73. pyopencl-2024.2.2.data/data/src/bitlog.cpp +0 -51
  74. pyopencl-2024.2.2.data/data/src/bitlog.hpp +0 -83
  75. pyopencl-2024.2.2.data/data/src/clinfo_ext.h +0 -134
  76. pyopencl-2024.2.2.data/data/src/mempool.hpp +0 -444
  77. pyopencl-2024.2.2.data/data/src/pyopencl_ext.h +0 -77
  78. pyopencl-2024.2.2.data/data/src/tools.hpp +0 -90
  79. pyopencl-2024.2.2.data/data/src/wrap_cl.cpp +0 -61
  80. pyopencl-2024.2.2.data/data/src/wrap_cl.hpp +0 -5853
  81. pyopencl-2024.2.2.data/data/src/wrap_cl_part_1.cpp +0 -369
  82. pyopencl-2024.2.2.data/data/src/wrap_cl_part_2.cpp +0 -702
  83. pyopencl-2024.2.2.data/data/src/wrap_constants.cpp +0 -1274
  84. pyopencl-2024.2.2.data/data/src/wrap_helpers.hpp +0 -213
  85. pyopencl-2024.2.2.data/data/src/wrap_mempool.cpp +0 -738
  86. pyopencl-2024.2.2.data/data/test/add-vectors-32.spv +0 -0
  87. pyopencl-2024.2.2.data/data/test/add-vectors-64.spv +0 -0
  88. pyopencl-2024.2.2.data/data/test/empty-header.h +0 -1
  89. pyopencl-2024.2.2.data/data/test/test_algorithm.py +0 -1180
  90. pyopencl-2024.2.2.data/data/test/test_array.py +0 -2392
  91. pyopencl-2024.2.2.data/data/test/test_arrays_in_structs.py +0 -100
  92. pyopencl-2024.2.2.data/data/test/test_clmath.py +0 -529
  93. pyopencl-2024.2.2.data/data/test/test_clrandom.py +0 -75
  94. pyopencl-2024.2.2.data/data/test/test_enqueue_copy.py +0 -271
  95. pyopencl-2024.2.2.data/data/test/test_wrapper.py +0 -1565
  96. pyopencl-2024.2.2.dist-info/LICENSE +0 -282
  97. pyopencl-2024.2.2.dist-info/RECORD +0 -123
  98. pyopencl-2024.2.2.dist-info/top_level.txt +0 -1
  99. {pyopencl-2024.2.2.data/data → pyopencl-2024.2.5.dist-info/licenses}/LICENSE +0 -0
@@ -1,282 +0,0 @@
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,123 +0,0 @@
1
- pyopencl/__init__.py,sha256=cerRVB4Phpo0Jv_FN-ORrg8BXpzvrQCO7exVKNi1RkQ,83069
2
- pyopencl/_cl.cp38-win_amd64.pyd,sha256=NteUims3Yys4opcaDMm_Oy7uNO1vMMxmkA27F0-WWyU,556544
3
- pyopencl/_cluda.py,sha256=5coLt4eR5BOLgfUesgnaTx_nUhZ6BBhYi9dodvl7cbc,2128
4
- pyopencl/_mymako.py,sha256=MKVghtWIXkYppStYGfz2VcaK6qCZ6ICzloMCEE4ee0M,624
5
- pyopencl/algorithm.py,sha256=ix5sVRpVnD5eZwMOZ3HTSblF9iTrbURPalokuRH-m98,52640
6
- pyopencl/array.py,sha256=kU8ifBb6p10PEc6Lj_VLHAl-N2uhVtnP5KSJdHUAis0,115144
7
- pyopencl/bitonic_sort.py,sha256=fRMd-Np6Cevr9naiCz03159Mj0sRuPA6MxRjGkwj8oA,8114
8
- pyopencl/bitonic_sort_templates.py,sha256=CzjCacG-YgzzXb0ia0oMKT27RlmmWdRtO2w4_OJrnTA,16766
9
- pyopencl/cache.py,sha256=uwIl76P7kcapH1OZEmHzPBmkQFKLOVd0o9enYI8cU94,16493
10
- pyopencl/capture_call.py,sha256=ydQPYy8AyWmDf8amCZaiBIvzEOPvPRzIwtecOu1kR4g,5837
11
- pyopencl/clmath.py,sha256=GL9s0YwKpCgvsGl6ndoWXEngPFWAqRRR_HOoQm57OA8,8502
12
- pyopencl/clrandom.py,sha256=5RS-1duIm-sauChyd8VjBden3DLqfdjp4D9Csnk6BRg,13451
13
- pyopencl/cltypes.py,sha256=2jCvMMBtkhXxfbBFBfM4NSFKRg7kEo1tlwGJQlyiwmQ,4955
14
- pyopencl/elementwise.py,sha256=-4L6OtCEQyaNuJJOYq0y36P_TVp0OXs8Zy4oqG8OkZw,39766
15
- pyopencl/invoker.py,sha256=NC8lq8kKjP0VhEByN5AI-mcasBchUZadtMrJ0_UjHws,14412
16
- pyopencl/ipython_ext.py,sha256=5Le00IDI2iGP4VtqeHln6YBJOweGuXcr_HsdPEDzGwc,1982
17
- pyopencl/reduction.py,sha256=FiOAQy0ZjkD7-JrwI7pD98IWIbPZoEnSuil_LY3RcOU,26304
18
- pyopencl/scan.py,sha256=guvNQBejjEPq5g9u9PUyMpVchprfdBvBlrp4-ZB-uvo,67398
19
- pyopencl/tools.py,sha256=2YuiD3vnDR7-ktmQaN17DSTi-UeSwJr02mH-O0znnfs,47023
20
- pyopencl/version.py,sha256=cUrZX2JaM0WGYAz55S4xJKLI93kTd7n0_4iuubImUow,112
21
- pyopencl/characterize/__init__.py,sha256=B-7CBADJq6fG4RCGEI-uBxwACUDpHajCc2FjuChH8O8,14262
22
- pyopencl/characterize/performance.py,sha256=xwyt4SsABo4LipXzjRF7TKz8LVBcLmZZ5os6f7hp3Go,7103
23
- pyopencl/cl/pyopencl-airy.cl,sha256=HSUEWbUN2MNzuhvDP3LB9dVY_3dhjFSWXhvGQsrA8VA,8446
24
- pyopencl/cl/pyopencl-bessel-j-complex.cl,sha256=XOUBUZFxgra9nUAymnbJugcOa1lQyj-fwiZA9ly3rdI,6264
25
- pyopencl/cl/pyopencl-bessel-j.cl,sha256=V16uWa8t1b0oxNHRCLhCqxzR-28yr-5ZslqHkw2Ved0,24358
26
- pyopencl/cl/pyopencl-bessel-y.cl,sha256=kD6u2qtgmrNNq75w5uaxHdrvb6oeeTPgrGpF29ERsuE,12732
27
- pyopencl/cl/pyopencl-complex.h,sha256=DHFUM2sHCv50m4LJvvIpF8sMWc5yOO6kYu9nWlScl6A,8847
28
- pyopencl/cl/pyopencl-eval-tbl.cl,sha256=SDYB_RkW7jtN_Y_xhCbwGjBSNmBpMg8T4ZXlrP_2q9U,2736
29
- pyopencl/cl/pyopencl-hankel-complex.cl,sha256=yrxPF4wgr9bTzG4SyJsVbij5SODoJvWaDRDDuo4zrs4,32005
30
- pyopencl/cl/pyopencl-random123/array.h,sha256=oTYPJfU7s4IXy8xRc3H0rqMq4mgyVxd7UuLSf3liUPY,17413
31
- pyopencl/cl/pyopencl-random123/openclfeatures.h,sha256=jauJ1WEspr-YNefAuUwPhapl_JQDVa6my_h4fLl-p4o,2974
32
- pyopencl/cl/pyopencl-random123/philox.cl,sha256=KqPbLt54UwrHPvBe7v4ZMzqI2oGrzp0c0QzqVhydNCY,22226
33
- pyopencl/cl/pyopencl-random123/threefry.cl,sha256=bC78-HJVuc4AFiNppglDQiN8cZRD45hG1PPdi4Sdt-o,55563
34
- pyopencl/compyte/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
- pyopencl/compyte/array.py,sha256=IJzw-dSS_injEiLVNHLlSRi0R2F1sO_8xeeK-XezsSo,7636
36
- pyopencl/compyte/dtypes.py,sha256=nEieOLmnNJQcU6sNJJoBe7qZXAqu4sOgHQXKC8SGDi8,10099
37
- pyopencl/compyte/ndarray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- pyopencl/compyte/ndarray/gen_elemwise.py,sha256=5NlbUth3Reu2ag6DmCp_JjPcIoF6Af4w5cuAg3h9-W4,78727
39
- pyopencl/compyte/ndarray/gen_reduction.py,sha256=BElJhHtAdmL5gkTqeHY1yMe0eYMoDcQWIBSQvsxVc_4,57826
40
- pyopencl/compyte/ndarray/setup_opencl.py,sha256=XSF-qDieVIEaHph25gTs3fg8A4okd3fESfbiyX7yRTA,3910
41
- pyopencl/compyte/ndarray/test_gpu_elemwise.py,sha256=83Ju3lNNU8BcSvqG6QbgcHx_VbVo_-0vVwEBrmYjWtw,18849
42
- pyopencl/compyte/ndarray/test_gpu_ndarray.py,sha256=GHBG4TlGxQD2VxJi6p-UPidR8Uy2QJakfp40EsWuEhM,18268
43
- pyopencl-2024.2.2.data/data/CITATION.cff,sha256=JnLq8VzKMDRiv9WrTeROpLfRSgbFLsj5a4E7ZOREtzs,1984
44
- pyopencl-2024.2.2.data/data/CMakeLists.txt,sha256=8_Xs7hiNrbWYCXkcNLlCZ6HPPzh37KHdQ_yMu3dO1JM,2292
45
- pyopencl-2024.2.2.data/data/LICENSE,sha256=jib9h6nV8oAvCkKPKDecpLakmQi1SktCn4YXmllgySY,15566
46
- pyopencl-2024.2.2.data/data/Makefile.in,sha256=cQiDsHl9_t1Q9wH6vcsr-Flrz2wKV-FC-hcZCqz1yYk,344
47
- pyopencl-2024.2.2.data/data/README.rst,sha256=1eTjHMBdGjpfQMMt5JEDQpuQ_GHAgpeLNqgrmlkpWHo,3303
48
- pyopencl-2024.2.2.data/data/README_SETUP.txt,sha256=YHBTFESrY_SE0ij2eACB_dIjR-ymojz50VM1cFXEqVA,1124
49
- pyopencl-2024.2.2.data/data/aksetup_helper.py,sha256=YWP4ek9aIvqDy5pHowL0nTP1KbtSht7CjJbZseTfVsM,33298
50
- pyopencl-2024.2.2.data/data/configure.py,sha256=LlbXTT0z2LUCfD5mcynLU_MI0YZx-769bt-9bVre9mY,100
51
- pyopencl-2024.2.2.data/data/pytest.ini,sha256=A2lpUG-gOHtOIELi6wUR7IR10spqWWB-d9K9AQ8rBcg,67
52
- pyopencl-2024.2.2.data/data/contrib/cldis.py,sha256=jaeEtUVzzKIaXAlAlVNSPB0D4mR0lTf9hvP4aDp6Kq4,3730
53
- pyopencl-2024.2.2.data/data/contrib/pyopencl.vim,sha256=BHc73HcHNhQumR909OotPQq6JlDDmtjw8tP03Tp_RMc,2463
54
- pyopencl-2024.2.2.data/data/contrib/fortran-to-opencl/README,sha256=ohAhFKCOHVy9LoQcQaLkYIOiit5stt-C-H6yxO6sWUQ,918
55
- pyopencl-2024.2.2.data/data/contrib/fortran-to-opencl/translate.py,sha256=yIkETemmUFKLKCcZbd47ZWD190dRVWuj9Q2xupV0Buc,45059
56
- pyopencl-2024.2.2.data/data/doc/Makefile,sha256=jVLn9111NtdAENl5pu-fgAFoWhl7DI981krfTdB0iMM,749
57
- pyopencl-2024.2.2.data/data/doc/algorithm.rst,sha256=NxESQFvh_qaoKFEiT-lk7A1Q6nmNWmWBUqHwr3SqGjI,7092
58
- pyopencl-2024.2.2.data/data/doc/array.rst,sha256=AB-G6mvx6rJVwMM-q1zPYSD1b_8YLo2a15ICXaeD_EQ,8778
59
- pyopencl-2024.2.2.data/data/doc/conf.py,sha256=Os6BkcuBGbTUnrPcYrmL9p1kK3LvUXZ1MqPbct8npIE,887
60
- pyopencl-2024.2.2.data/data/doc/howto.rst,sha256=Mh8e3Emy_0mf7gTfiXikCShx0DHPLzSXl3NDEpFJutE,3537
61
- pyopencl-2024.2.2.data/data/doc/index.rst,sha256=Ffz6WjOH4HbmBdQ7D203Ev3XpKGfuM_gHSo20HV62Ao,5602
62
- pyopencl-2024.2.2.data/data/doc/make_constants.py,sha256=tYzmY6M8vcUDR0jaisFwOXvIlNePKOtv7EB4xFVTn8Y,18365
63
- pyopencl-2024.2.2.data/data/doc/misc.rst,sha256=YU34fHcXY0a3Wq8NQ_cESNuXs2r_wO5ZE4nELjJUxQ0,30326
64
- pyopencl-2024.2.2.data/data/doc/runtime.rst,sha256=oNBD0_N-KXqQnl8T8s-I3QXKaKAERWaIQDsvwmKeYgY,1019
65
- pyopencl-2024.2.2.data/data/doc/runtime_const.rst,sha256=hBfLjZkD226vcnjPsuANknhk7fnt0R37MsMyHTp9RTo,602
66
- pyopencl-2024.2.2.data/data/doc/runtime_gl.rst,sha256=YFM1TR0uskhaZPyIBj4g_BBJ0dBYADoBUBNHog2of8A,2284
67
- pyopencl-2024.2.2.data/data/doc/runtime_memory.rst,sha256=ZfD9muebbC8yTQk0alfsG0o8NP4r-fa6FkLjMxtfKQY,17617
68
- pyopencl-2024.2.2.data/data/doc/runtime_platform.rst,sha256=sTViljNGvYY55aFp08MpqHTD1baaHGSpYiZnGkfFpNA,5818
69
- pyopencl-2024.2.2.data/data/doc/runtime_program.rst,sha256=ykv_AsnM1IwTTgOhJdUlf728K7L9hC3IPlyP5zNvFO8,13036
70
- pyopencl-2024.2.2.data/data/doc/runtime_queue.rst,sha256=sSW0Z5JcqRDqa0manrjfUuah9DxQR-529z9TY5-qhXk,5413
71
- pyopencl-2024.2.2.data/data/doc/subst.rst,sha256=Ki3D0zVkX0esT5QiuAkrVhPoC00ZhEhy7OUDkzUyvR0,2280
72
- pyopencl-2024.2.2.data/data/doc/tools.rst,sha256=bza-FhSePXl4zrkuyBGRCdfcty7oDiX9veFMf30WlC0,74
73
- pyopencl-2024.2.2.data/data/doc/types.rst,sha256=b7viOlQpySWEVIRdsl0YUSJG37Mb9wh9SUeJkDHr_tw,1288
74
- pyopencl-2024.2.2.data/data/examples/black-hole-accretion.py,sha256=3jotrCz1ttokhgWqoKSumr9utxHKOH_Yn9jyUCUUbOY,56977
75
- pyopencl-2024.2.2.data/data/examples/demo-struct-reduce.py,sha256=o-YcZG63xHT34mnAHpqAPBQhWWD58AYNC6t5kpNB4qk,1899
76
- pyopencl-2024.2.2.data/data/examples/demo.py,sha256=iqlXgzh-if9N8rd6ZjmyJOBa5TcSz6Tg4RlBUmIlKno,1052
77
- pyopencl-2024.2.2.data/data/examples/demo_array.py,sha256=Nch8naK2oOWExc8HGnkSWCkEV8gct8vXhDG44fpLm8o,870
78
- pyopencl-2024.2.2.data/data/examples/demo_array_svm.py,sha256=pPjPv2MVPWAanAxfuV2fbbd7YysSXfGYhbJzJlQQ_Y0,975
79
- pyopencl-2024.2.2.data/data/examples/demo_elementwise.py,sha256=CfBrOQJbepr2n1cFc-vASJuX1e4ucUQwQ-MPMoUOxNI,851
80
- pyopencl-2024.2.2.data/data/examples/demo_elementwise_complex.py,sha256=30XjhVKDOpYf8d67SR97_ZfFkNczQv51gbM2RniuSts,1578
81
- pyopencl-2024.2.2.data/data/examples/demo_mandelbrot.py,sha256=KIg79Bz_cFE_QtMwc2KjI5WLx8IgA1hKayXEsvaF8Ek,5234
82
- pyopencl-2024.2.2.data/data/examples/demo_meta_codepy.py,sha256=VQWESzXn6BxYevuKFTas_0CPZsBHhUHWN8KxwedUTUc,1763
83
- pyopencl-2024.2.2.data/data/examples/demo_meta_template.py,sha256=dMs5JiQpcRnRsFCBlTIxxlzdTXo9syX-qzsMT_14olo,1530
84
- pyopencl-2024.2.2.data/data/examples/dump-performance.py,sha256=eyBGEy-_rLGUb6_YjFqDSGElb0cdaEDx19kLsEXbNv4,1370
85
- pyopencl-2024.2.2.data/data/examples/dump-properties.py,sha256=dMn5IOLFt4oYGiviNvckuUEg-U15QJATBQV-9g78y9w,3370
86
- pyopencl-2024.2.2.data/data/examples/gl_interop_demo.py,sha256=PAK1H6UhUVaZCZKeXnWqG-ZBg3zG208vjjKgZxlo_iE,2519
87
- pyopencl-2024.2.2.data/data/examples/gl_particle_animation.py,sha256=zD2mco4n21w_mRmBMexEUSok6YCB5nrdBdeU29QKrug,6752
88
- pyopencl-2024.2.2.data/data/examples/ipython-demo.ipynb,sha256=hMiw_C5CkqY4Exk9LRY-UjMkKejj36ZxTdPYtwZpnno,4188
89
- pyopencl-2024.2.2.data/data/examples/median-filter.py,sha256=jfQSVrjZpnueQKtBs1AjF-tmuGILfAeDgBaq0CWZ5-c,2747
90
- pyopencl-2024.2.2.data/data/examples/n-body.py,sha256=YDdMgUlWFAsEbDOd1cBKNUMr7QyavnFTniYmLU-brCU,33194
91
- pyopencl-2024.2.2.data/data/examples/narray.py,sha256=nmiGvB5gzZMpIqMIZr5DcZRf3IjgQJ3vEdw6Whf-H2o,744
92
- pyopencl-2024.2.2.data/data/examples/noisyImage.jpg,sha256=QY_aUt15xoBzlR9K8stnVhFv70Uu7K8vU5MTCQqg4Go,66806
93
- pyopencl-2024.2.2.data/data/examples/pi-monte-carlo.py,sha256=WPaJ5aM7xWjn1fkYfdt13I94jCXOmkWbxb4QDw_mafw,36608
94
- pyopencl-2024.2.2.data/data/examples/svm.py,sha256=ceuUJkTgS7LxA8qSnY-_EJdOdL7ptC1mKuO3urOFPM8,2063
95
- pyopencl-2024.2.2.data/data/examples/transpose.py,sha256=3MANuCVJINu_fT1LlN76bQb1ta751VRp54ImA83tnnw,6713
96
- pyopencl-2024.2.2.data/data/src/bitlog.cpp,sha256=GPtVPd7mY3ZZXkybAo0GfmihOaFsVGEbhMh9BYZiI-Q,2134
97
- pyopencl-2024.2.2.data/data/src/bitlog.hpp,sha256=Svgtu7Odr8IGU-tHzuZTVJ-c10-oNUsEhcWpnX-yIFY,2253
98
- pyopencl-2024.2.2.data/data/src/clinfo_ext.h,sha256=ItaZwKEhA6zJ0peGsB1klnlFYCzsBYI7iNzHlUt-j4I,4676
99
- pyopencl-2024.2.2.data/data/src/mempool.hpp,sha256=zuw_yX5oIZlwJFxvRmnjy-84j91sgfYnaikHTLs5CRg,12250
100
- pyopencl-2024.2.2.data/data/src/pyopencl_ext.h,sha256=Cn4vSd-OZH73MMBozt4mujzJ2lYxAu0V-CeU8O63kfA,2186
101
- pyopencl-2024.2.2.data/data/src/tools.hpp,sha256=YewKTBez5NEXeI7RHaUOQoy-KRuoiZGDs4DJ97O4VtM,2438
102
- pyopencl-2024.2.2.data/data/src/wrap_cl.cpp,sha256=DNfUpQImGzGSmO4VbC1NSd2EvsT0GksUbjX_GniU34Y,1866
103
- pyopencl-2024.2.2.data/data/src/wrap_cl.hpp,sha256=RiHeMzMegklvk93szdMS_b8EVEH2nc_AA0G2lNQDdYs,171028
104
- pyopencl-2024.2.2.data/data/src/wrap_cl_part_1.cpp,sha256=rJ6YhepuQOqE98RHxJddHTLEc49CEi4Xv4kF7G-1-dw,11241
105
- pyopencl-2024.2.2.data/data/src/wrap_cl_part_2.cpp,sha256=BhQh5qMcVIDqHN89zasLWJHm56R-7uFN6YC5rjady3c,20647
106
- pyopencl-2024.2.2.data/data/src/wrap_constants.cpp,sha256=k-_WtEMCpNLIUX_UY9vNQhCRK5f83y8YAcXf9kT6QSU,39770
107
- pyopencl-2024.2.2.data/data/src/wrap_helpers.hpp,sha256=0a5saPxPeCa0dRnixokXyhDTbe8lBRnV8goYbXVY444,6792
108
- pyopencl-2024.2.2.data/data/src/wrap_mempool.cpp,sha256=rVt2cE-aW3-d4kh3HmXlf4lP58u5MG2gLRggwlPIa2U,19672
109
- pyopencl-2024.2.2.data/data/test/add-vectors-32.spv,sha256=uEpKzFLNOwHpXHgGHXE9P5U9uH_aF3Uk0ZyV0FebijA,792
110
- pyopencl-2024.2.2.data/data/test/add-vectors-64.spv,sha256=KvRwrVbPe-Jaq0cf6T6Bsh2XCK2-1_jHNT-t1kTebkk,952
111
- pyopencl-2024.2.2.data/data/test/empty-header.h,sha256=C1nD4ARGq5PWADow7j8QFuG70ONkPot_BqWFDovqjvU,28
112
- pyopencl-2024.2.2.data/data/test/test_algorithm.py,sha256=AlaXvJ6DtBcbtN2V9tFv_Npy8nvW6BeROQeZ_ikP4Dg,36511
113
- pyopencl-2024.2.2.data/data/test/test_array.py,sha256=UOH9y9AJhpMH4zkO3MDOzwBbFU3YaWWBm20XZrUAwUo,66184
114
- pyopencl-2024.2.2.data/data/test/test_arrays_in_structs.py,sha256=33GwwqK5Gwhgts4zGKyfYb4U-ynypiJYOcLeZm0XG-Y,3615
115
- pyopencl-2024.2.2.data/data/test/test_clmath.py,sha256=MJ1cNQ8qR-48KPyr3CbeJLDGB6f8rgT7vCBDvEkj0mo,16713
116
- pyopencl-2024.2.2.data/data/test/test_clrandom.py,sha256=w6ITDARsibbtCDPDWPwi0gRZjPRms6w_JmVdeYluegE,2535
117
- pyopencl-2024.2.2.data/data/test/test_enqueue_copy.py,sha256=DyzC71WlePAgbnbouGoOF2byh3-LY9aFJATPeYb7HWA,10047
118
- pyopencl-2024.2.2.data/data/test/test_wrapper.py,sha256=1tfVKsyBWawJz8t1sz2nWH8Nb8fHL0lrcCNsTad5W8c,46440
119
- pyopencl-2024.2.2.dist-info/LICENSE,sha256=jib9h6nV8oAvCkKPKDecpLakmQi1SktCn4YXmllgySY,15566
120
- pyopencl-2024.2.2.dist-info/METADATA,sha256=ZfWtPl_XPmrZdvoDpcUPzGqyvWFLiyC5CLM-OMIamNs,4653
121
- pyopencl-2024.2.2.dist-info/WHEEL,sha256=rjmE6jOYKSgS2T4NpCJJtLEPSybiWFu39x_TGcEjjFE,94
122
- pyopencl-2024.2.2.dist-info/top_level.txt,sha256=XPUBiMQv-BwDR6D6dDoG5u3HOzYMlKiHq0rBWdAMegU,9
123
- pyopencl-2024.2.2.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- pyopencl