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.
- pyopencl/__init__.py +82 -80
- pyopencl/_cl.cpython-311-darwin.so +0 -0
- pyopencl/algorithm.py +8 -10
- pyopencl/array.py +16 -12
- pyopencl/bitonic_sort.py +5 -4
- pyopencl/cache.py +22 -22
- pyopencl/capture_call.py +4 -3
- pyopencl/characterize/__init__.py +4 -2
- pyopencl/characterize/performance.py +2 -1
- pyopencl/clmath.py +2 -1
- pyopencl/clrandom.py +5 -369
- pyopencl/cltypes.py +4 -1
- pyopencl/compyte/dtypes.py +1 -1
- pyopencl/compyte/ndarray/gen_elemwise.py +6 -5
- pyopencl/compyte/ndarray/gen_reduction.py +6 -6
- pyopencl/compyte/ndarray/setup_opencl.py +3 -2
- pyopencl/compyte/ndarray/test_gpu_elemwise.py +5 -4
- pyopencl/compyte/ndarray/test_gpu_ndarray.py +0 -1
- pyopencl/elementwise.py +4 -6
- pyopencl/invoker.py +15 -9
- pyopencl/ipython_ext.py +1 -1
- pyopencl/reduction.py +5 -5
- pyopencl/scan.py +17 -21
- pyopencl/tools.py +13 -16
- pyopencl/version.py +1 -1
- pyopencl-2024.2.data/data/CITATION.cff +74 -0
- {pyopencl-2023.1.4.dist-info → pyopencl-2024.2.data/data}/LICENSE +0 -23
- pyopencl-2024.2.data/data/Makefile.in +21 -0
- pyopencl-2024.2.data/data/README.rst +70 -0
- pyopencl-2024.2.data/data/README_SETUP.txt +34 -0
- pyopencl-2024.2.data/data/aksetup_helper.py +1013 -0
- pyopencl-2024.2.data/data/configure.py +6 -0
- pyopencl-2024.2.data/data/contrib/cldis.py +91 -0
- pyopencl-2024.2.data/data/contrib/fortran-to-opencl/README +29 -0
- pyopencl-2024.2.data/data/contrib/fortran-to-opencl/translate.py +1441 -0
- pyopencl-2024.2.data/data/contrib/pyopencl.vim +84 -0
- pyopencl-2024.2.data/data/doc/Makefile +23 -0
- pyopencl-2024.2.data/data/doc/algorithm.rst +214 -0
- pyopencl-2024.2.data/data/doc/array.rst +305 -0
- pyopencl-2024.2.data/data/doc/conf.py +26 -0
- pyopencl-2024.2.data/data/doc/howto.rst +105 -0
- pyopencl-2024.2.data/data/doc/index.rst +137 -0
- pyopencl-2024.2.data/data/doc/make_constants.py +561 -0
- pyopencl-2024.2.data/data/doc/misc.rst +885 -0
- pyopencl-2024.2.data/data/doc/runtime.rst +51 -0
- pyopencl-2024.2.data/data/doc/runtime_const.rst +30 -0
- pyopencl-2024.2.data/data/doc/runtime_gl.rst +78 -0
- pyopencl-2024.2.data/data/doc/runtime_memory.rst +527 -0
- pyopencl-2024.2.data/data/doc/runtime_platform.rst +184 -0
- pyopencl-2024.2.data/data/doc/runtime_program.rst +364 -0
- pyopencl-2024.2.data/data/doc/runtime_queue.rst +182 -0
- pyopencl-2024.2.data/data/doc/subst.rst +36 -0
- pyopencl-2024.2.data/data/doc/tools.rst +4 -0
- pyopencl-2024.2.data/data/doc/types.rst +42 -0
- pyopencl-2024.2.data/data/examples/black-hole-accretion.py +2227 -0
- pyopencl-2024.2.data/data/examples/demo-struct-reduce.py +75 -0
- pyopencl-2024.2.data/data/examples/demo.py +39 -0
- pyopencl-2024.2.data/data/examples/demo_array.py +32 -0
- pyopencl-2024.2.data/data/examples/demo_array_svm.py +37 -0
- pyopencl-2024.2.data/data/examples/demo_elementwise.py +34 -0
- pyopencl-2024.2.data/data/examples/demo_elementwise_complex.py +53 -0
- pyopencl-2024.2.data/data/examples/demo_mandelbrot.py +183 -0
- pyopencl-2024.2.data/data/examples/demo_meta_codepy.py +56 -0
- pyopencl-2024.2.data/data/examples/demo_meta_template.py +55 -0
- pyopencl-2024.2.data/data/examples/dump-performance.py +38 -0
- pyopencl-2024.2.data/data/examples/dump-properties.py +86 -0
- pyopencl-2024.2.data/data/examples/gl_interop_demo.py +84 -0
- pyopencl-2024.2.data/data/examples/gl_particle_animation.py +218 -0
- pyopencl-2024.2.data/data/examples/ipython-demo.ipynb +203 -0
- pyopencl-2024.2.data/data/examples/median-filter.py +99 -0
- pyopencl-2024.2.data/data/examples/n-body.py +1070 -0
- pyopencl-2024.2.data/data/examples/narray.py +37 -0
- pyopencl-2024.2.data/data/examples/noisyImage.jpg +0 -0
- pyopencl-2024.2.data/data/examples/pi-monte-carlo.py +1166 -0
- pyopencl-2024.2.data/data/examples/svm.py +82 -0
- pyopencl-2024.2.data/data/examples/transpose.py +229 -0
- pyopencl-2024.2.data/data/pytest.ini +3 -0
- pyopencl-2024.2.data/data/src/bitlog.cpp +51 -0
- pyopencl-2024.2.data/data/src/bitlog.hpp +83 -0
- pyopencl-2024.2.data/data/src/clinfo_ext.h +134 -0
- pyopencl-2024.2.data/data/src/mempool.hpp +444 -0
- pyopencl-2024.2.data/data/src/pyopencl_ext.h +77 -0
- pyopencl-2024.2.data/data/src/tools.hpp +90 -0
- pyopencl-2024.2.data/data/src/wrap_cl.cpp +61 -0
- pyopencl-2024.2.data/data/src/wrap_cl.hpp +5853 -0
- pyopencl-2024.2.data/data/src/wrap_cl_part_1.cpp +369 -0
- pyopencl-2024.2.data/data/src/wrap_cl_part_2.cpp +702 -0
- pyopencl-2024.2.data/data/src/wrap_constants.cpp +1274 -0
- pyopencl-2024.2.data/data/src/wrap_helpers.hpp +213 -0
- pyopencl-2024.2.data/data/src/wrap_mempool.cpp +731 -0
- pyopencl-2024.2.data/data/test/add-vectors-32.spv +0 -0
- pyopencl-2024.2.data/data/test/add-vectors-64.spv +0 -0
- pyopencl-2024.2.data/data/test/empty-header.h +1 -0
- pyopencl-2024.2.data/data/test/test_algorithm.py +1180 -0
- pyopencl-2024.2.data/data/test/test_array.py +2392 -0
- pyopencl-2024.2.data/data/test/test_arrays_in_structs.py +100 -0
- pyopencl-2024.2.data/data/test/test_clmath.py +529 -0
- pyopencl-2024.2.data/data/test/test_clrandom.py +75 -0
- pyopencl-2024.2.data/data/test/test_enqueue_copy.py +271 -0
- pyopencl-2024.2.data/data/test/test_wrapper.py +1554 -0
- pyopencl-2024.2.dist-info/LICENSE +282 -0
- {pyopencl-2023.1.4.dist-info → pyopencl-2024.2.dist-info}/METADATA +12 -12
- pyopencl-2024.2.dist-info/RECORD +122 -0
- {pyopencl-2023.1.4.dist-info → pyopencl-2024.2.dist-info}/WHEEL +1 -1
- pyopencl/cl/pyopencl-ranluxcl.cl +0 -957
- pyopencl-2023.1.4.dist-info/RECORD +0 -48
- {pyopencl-2023.1.4.dist-info → pyopencl-2024.2.dist-info}/top_level.txt +0 -0
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
pyopencl/algorithm.py,sha256=H9lx8NkDFhmmGjW6fpEeCKK5dK0dYfTL3iutrairiUY,51198
|
|
2
|
-
pyopencl/clmath.py,sha256=XXAqqcAOYiRx3ZTg6dP9hocHB-3yJw0zZf0mwvPQsD0,8221
|
|
3
|
-
pyopencl/version.py,sha256=H7KBSe4G8PxgUxQQ_Yz4c4dg2reEfqiU1hfYz28ezlQ,109
|
|
4
|
-
pyopencl/capture_call.py,sha256=61OOtL__YJ5Qkq7P5qjbzdZVOO_YRPjwTs_iLHMQDSc,5660
|
|
5
|
-
pyopencl/reduction.py,sha256=diKtrWcl5b-nfPupS1kvhTwMYGHqdfXZMsP6wxztkco,25547
|
|
6
|
-
pyopencl/tools.py,sha256=NeywdU4YXptl0fKHr1OXU2WITkumGoP3hGsbdoR13ng,45549
|
|
7
|
-
pyopencl/elementwise.py,sha256=BZK_1Y8qDJEKF4dbvb9Gw_K2mbXVXnDJvZjAC34z5U8,38637
|
|
8
|
-
pyopencl/cache.py,sha256=cGYg1qxeWqA_HuXEU-37E42tT5-ICIl9lI6CYVn0aEA,15720
|
|
9
|
-
pyopencl/__init__.py,sha256=vdIU97_xNZyfSkVOL1-cxpo9I-p4Tww65TmLOmf3MLA,80151
|
|
10
|
-
pyopencl/cltypes.py,sha256=xXu-3G8WBDZb8esJwXB_lD8IwJ6hG8acGLKAGdIlU_A,4815
|
|
11
|
-
pyopencl/invoker.py,sha256=04VtDVZ_B8qqHEjuzQ2nOarT7XM2K15RVit15HFr77w,13750
|
|
12
|
-
pyopencl/ipython_ext.py,sha256=wtYnlgzxzxAiH8_Z_Rxxqe0ToG5eFIpUrtolueRtFhA,1916
|
|
13
|
-
pyopencl/scan.py,sha256=rp7tZjVx3mChy14AudJihPMH7rU9xXBmPXPjDC4xAKw,65308
|
|
14
|
-
pyopencl/_cluda.py,sha256=KKUxizD1iQEuZ_TmmFZNJ8IdXa8x8uT9HgB0nmAlYLw,2074
|
|
15
|
-
pyopencl/_cl.cpython-311-darwin.so,sha256=rgPQSvYzHdoZUc4wpMfBJSQD1WcxFtTiUZCpxgcmAFQ,1335478
|
|
16
|
-
pyopencl/_mymako.py,sha256=VnxoyODc-_wVcWhKgQqUYVh_Iun5498Yg4W0WmGhTwk,610
|
|
17
|
-
pyopencl/array.py,sha256=858vSdjnpgrdB10XtPQ_9OzgHMY452n5-9POXWIogcc,111639
|
|
18
|
-
pyopencl/bitonic_sort.py,sha256=HBTe-moXBfk5_AoSq3FKuWE1YQ0WuDoVHKD5T9T7jcs,7875
|
|
19
|
-
pyopencl/bitonic_sort_templates.py,sha256=Y1de5klU8GRo2pKlh1cZyYf_NBSIPDbhO83VLLnUgmk,16172
|
|
20
|
-
pyopencl/clrandom.py,sha256=gIhVH2HpBPAamwa3Jd_ZlydjSFkSbWdFCZpHP02sQ10,25553
|
|
21
|
-
pyopencl/compyte/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
-
pyopencl/compyte/dtypes.py,sha256=2S_CLw1d6dwoaaUOG67Wrdv2W8cW4trtpaF490P_zqE,9809
|
|
23
|
-
pyopencl/compyte/array.py,sha256=9dUSCSb475naOADXWhgpQb72Yx1FjKWMEaU6jRwdq90,7422
|
|
24
|
-
pyopencl/compyte/ndarray/gen_reduction.py,sha256=EsQr0fDFXMl0JFRqHte9ktRORfA8J-YSVpJtbx0MiW8,56332
|
|
25
|
-
pyopencl/compyte/ndarray/test_gpu_elemwise.py,sha256=SMQh7SnmbyrYsjZ6AndpLRVzhpcC6caQvx14UZ5IQTE,18436
|
|
26
|
-
pyopencl/compyte/ndarray/setup_opencl.py,sha256=hta4fwsExk49d60uU3z7eDqDXgJNL3cGCEa0WsIPVSY,3808
|
|
27
|
-
pyopencl/compyte/ndarray/gen_elemwise.py,sha256=HrHSS2_Y-w9y7kcONfM8X-CF8dz8fVRmotRIAlU7AA8,76836
|
|
28
|
-
pyopencl/compyte/ndarray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
pyopencl/compyte/ndarray/test_gpu_ndarray.py,sha256=QmUqj7nXiZpFZWBoBBZW9DWfSKOcoFqFPO4Fg8tWxlA,17782
|
|
30
|
-
pyopencl/characterize/__init__.py,sha256=IBAVFT6eDUxHbwpiyAOfY9r04BWcG4TN2tu46Pw4MqQ,13827
|
|
31
|
-
pyopencl/characterize/performance.py,sha256=E1TASiGK7m13uWtZIdjEfAbMD_XCEgYQolxW9__jIlA,6865
|
|
32
|
-
pyopencl/cl/pyopencl-ranluxcl.cl,sha256=0hDxPP8pSEA5k1_kqLYIzdD7T--CVw9oASpkpO1yAwg,38528
|
|
33
|
-
pyopencl/cl/pyopencl-bessel-y.cl,sha256=VDy8l4lVxO8VcJR_maeGu_Qjnw27j28zBwhaTKDhBBg,12297
|
|
34
|
-
pyopencl/cl/pyopencl-hankel-complex.cl,sha256=JSm38L6cOdnDssVqzKCNgjMrILT5ExkYAxz7i8rQBtA,31561
|
|
35
|
-
pyopencl/cl/pyopencl-bessel-j.cl,sha256=69d5WoqajYSubLgA6OVwYw0yOHGt64zY97J8isnsQgU,23274
|
|
36
|
-
pyopencl/cl/pyopencl-bessel-j-complex.cl,sha256=o-17yK_wBFqRiGgTYHg9waooTEKt1SCoguMUbg2LOB0,6026
|
|
37
|
-
pyopencl/cl/pyopencl-airy.cl,sha256=S6S84BX6v6E9ZuGB7mdbFygUY99BaManrWMf47Ms7NA,8122
|
|
38
|
-
pyopencl/cl/pyopencl-eval-tbl.cl,sha256=YNi_hyeE4GtDwzx3mLOMRIHh9jOOzMwSv-F2F1lMevg,2616
|
|
39
|
-
pyopencl/cl/pyopencl-complex.h,sha256=gy7Ge9tuDeLYdpM8KIvKK347AxK5XPFhlVjJfgPtIlI,8544
|
|
40
|
-
pyopencl/cl/pyopencl-random123/threefry.cl,sha256=2WmQGxx5gPSv22UL9_MlXv0eMug91k3bC-5_yQ4wlnI,54699
|
|
41
|
-
pyopencl/cl/pyopencl-random123/philox.cl,sha256=vYcQH7Vw13Q3qkW5Nhy1HTUDbWLGKoloE1YP0VWk6vU,21740
|
|
42
|
-
pyopencl/cl/pyopencl-random123/array.h,sha256=nIV0zDWYuybldNgtsh79icNtDXHYdDsSpFaWIvDTyw4,17088
|
|
43
|
-
pyopencl/cl/pyopencl-random123/openclfeatures.h,sha256=pAPbl7JkQgJxulSuGGevpaI43P7PwiH2mYxtNfHq59M,2881
|
|
44
|
-
pyopencl-2023.1.4.dist-info/RECORD,,
|
|
45
|
-
pyopencl-2023.1.4.dist-info/LICENSE,sha256=mR_IH3yNL6GBVf3ItYDPq_y0HgviEAjWa2TkDMCcULI,16469
|
|
46
|
-
pyopencl-2023.1.4.dist-info/WHEEL,sha256=eaDTbMedWofVq8IZjew9qeAkoA5Sw2MOU2ppdIRr1Jg,110
|
|
47
|
-
pyopencl-2023.1.4.dist-info/top_level.txt,sha256=XPUBiMQv-BwDR6D6dDoG5u3HOzYMlKiHq0rBWdAMegU,9
|
|
48
|
-
pyopencl-2023.1.4.dist-info/METADATA,sha256=kErLOcnw3e3AbzRBjt4I2i0XK1B7ntgMqHP-O8S6xFU,4452
|
|
File without changes
|