pyopencl 2025.1__tar.gz → 2025.2.1__tar.gz
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-2025.2.1/.basedpyright/baseline.json +57468 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/.gitignore +2 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/.gitlab-ci.yml +0 -87
- {pyopencl-2025.1 → pyopencl-2025.2.1}/PKG-INFO +11 -10
- {pyopencl-2025.1 → pyopencl-2025.2.1}/README.rst +2 -2
- {pyopencl-2025.1 → pyopencl-2025.2.1}/contrib/fortran-to-opencl/translate.py +4 -4
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/misc.rst +3 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/runtime.rst +38 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/runtime_memory.rst +1 -1
- pyopencl-2025.2.1/examples/image_filters_using_image2d_t.py +218 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/pi-monte-carlo.py +8 -8
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/__init__.py +568 -997
- pyopencl-2025.2.1/pyopencl/_cl.pyi +2006 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/_cluda.py +3 -0
- pyopencl-2025.2.1/pyopencl/_monkeypatch.py +1063 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/_mymako.py +3 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/algorithm.py +29 -24
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/array.py +30 -27
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/bitonic_sort.py +5 -2
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/bitonic_sort_templates.py +3 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/cache.py +5 -5
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/capture_call.py +31 -8
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/characterize/__init__.py +26 -19
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/characterize/performance.py +3 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/clmath.py +2 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/clrandom.py +3 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/cltypes.py +67 -2
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/compyte/array.py +3 -3
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/compyte/dtypes.py +22 -16
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/compyte/pyproject.toml +2 -22
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/elementwise.py +13 -10
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/invoker.py +13 -17
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/ipython_ext.py +2 -0
- pyopencl-2025.2.1/pyopencl/py.typed +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/reduction.py +18 -16
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/scan.py +31 -30
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/tools.py +128 -90
- pyopencl-2025.2.1/pyopencl/typing.py +52 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/version.py +2 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyproject.toml +65 -32
- {pyopencl-2025.1 → pyopencl-2025.2.1}/src/wrap_cl.hpp +2 -2
- {pyopencl-2025.1 → pyopencl-2025.2.1}/src/wrap_constants.cpp +1 -1
- {pyopencl-2025.1 → pyopencl-2025.2.1}/src/wrap_helpers.hpp +2 -2
- pyopencl-2025.2.1/stubgen/stubgen.py +69 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/test/test_algorithm.py +67 -67
- {pyopencl-2025.1 → pyopencl-2025.2.1}/test/test_array.py +105 -102
- {pyopencl-2025.1 → pyopencl-2025.2.1}/test/test_clmath.py +12 -12
- {pyopencl-2025.1 → pyopencl-2025.2.1}/test/test_wrapper.py +48 -47
- pyopencl-2025.1/.pylintrc-local.yml +0 -7
- {pyopencl-2025.1 → pyopencl-2025.2.1}/.gitmodules +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/.test-conda-env-py3.yml +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/CITATION.cff +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/CMakeLists.txt +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/LICENSE +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/contrib/cldis.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/contrib/fortran-to-opencl/README +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/contrib/pyopencl.vim +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/.gitignore +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/Makefile +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/algorithm.rst +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/array.rst +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/conf.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/howto.rst +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/index.rst +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/make_constants.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/runtime_const.rst +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/runtime_gl.rst +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/runtime_platform.rst +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/runtime_program.rst +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/runtime_queue.rst +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/subst.rst +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/tools.rst +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/doc/types.rst +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/.gitignore +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/black-hole-accretion.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/demo-struct-reduce.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/demo.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/demo_array.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/demo_array_svm.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/demo_elementwise.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/demo_elementwise_complex.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/demo_mandelbrot.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/demo_meta_codepy.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/demo_meta_template.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/dump-performance.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/dump-properties.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/gl_interop_demo.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/gl_particle_animation.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/ipython-demo.ipynb +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/median-filter.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/n-body.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/narray.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/noisyImage.jpg +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/svm.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/examples/transpose.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/cl/pyopencl-airy.cl +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/cl/pyopencl-bessel-j-complex.cl +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/cl/pyopencl-bessel-j.cl +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/cl/pyopencl-bessel-y.cl +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/cl/pyopencl-complex.h +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/cl/pyopencl-eval-tbl.cl +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/cl/pyopencl-hankel-complex.cl +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/cl/pyopencl-random123/array.h +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/cl/pyopencl-random123/openclfeatures.h +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/cl/pyopencl-random123/philox.cl +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/cl/pyopencl-random123/threefry.cl +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/compyte/.gitignore +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/pyopencl/compyte/__init__.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/scripts/build-ocl-macos.sh +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/scripts/build-ocl-windows.sh +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/scripts/build-ocl.sh +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/src/bitlog.cpp +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/src/bitlog.hpp +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/src/clinfo_ext.h +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/src/mempool.hpp +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/src/pyopencl_ext.h +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/src/tools.hpp +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/src/wrap_cl.cpp +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/src/wrap_cl_part_1.cpp +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/src/wrap_cl_part_2.cpp +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/src/wrap_mempool.cpp +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/test/add-vectors-32.spv +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/test/add-vectors-64.spv +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/test/empty-header.h +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/test/test_arrays_in_structs.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/test/test_clrandom.py +0 -0
- {pyopencl-2025.1 → pyopencl-2025.2.1}/test/test_enqueue_copy.py +0 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.