pyopencl
Python wrapper for OpenCL
What it is and what it does
PyOpenCL is a Python wrapper around the OpenCL API that lets you write code to run on GPUs and other massively parallel compute devices. It follows the design philosophy of its sister project PyCUDA, offering automatic resource cleanup via RAII patterns, complete access to OpenCL's API surface, automatic error translation to Python exceptions, and a C++-based implementation for performance. The package supports Apple, AMD, and Nvidia OpenCL implementations and is actively maintained with broad platform coverage.
Typical use involves creating an OpenCL context tied to available compute devices, building or loading kernels written in OpenCL C, and managing data transfer between host and device memory. The runtime dependencies (numpy, pytools, platformdirs, importlib-resources, typing_extensions) support array handling, platform detection, and utility functions. Installation via conda or pre-built wheels is recommended to avoid building from source, which requires a C++17 compiler and OpenCL headers.
Use it for:
- Accelerate numerical computations (linear algebra, FFTs, simulations) by offloading to GPU
- Implement custom compute kernels for image processing or signal processing on parallel hardware
- Prototype heterogeneous computing workflows that mix CPU and GPU workloads in a single Python script
- Deploy machine learning inference on embedded or mobile GPUs via OpenCL
- Run scientific simulations (physics, chemistry) that benefit from massively parallel execution
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
PyOpenCL provides Python bindings to OpenCL, enabling you to write GPU and massively parallel compute code that runs on diverse hardware accelerators through a Pythonic interface.
Yes, if you need GPU acceleration and want to target diverse hardware via OpenCL. The package is production-stable, actively maintained, permissively licensed, and widely used. Install friction is moderate due to compiled dependencies and OpenCL driver requirements, but pre-built wheels and conda packages ease setup. No known security vulnerabilities. Not necessary if you are locked into a single vendor (CUDA-only or Metal-only) or do not need GPU compute.
Install
pyopencl on PyPI
pip
pip install pyopencluv
uv add pyopenclpoetry
poetry add pyopenclInstalling pyopencl
Before you install
Medium install friction due to compiled C++ components and OpenCL driver dependencies. The package is actively maintained with recent commits and offers pre-built wheels for common platforms (Linux, macOS, Windows across multiple architectures), though building from source requires a C++17-compatible compiler and an OpenCL implementation.
License in practice
MIT license permits commercial, academic, and private use with minimal restrictions, making it suitable for proprietary and open-source projects alike.
Quickstart
pip install pyopencl
import pyopencl as cl
import numpy as np
platforms = cl.get_platforms()
devices = platforms[0].get_devices()
ctx = cl.Context(devices)
queue = cl.CommandQueue(ctx)
Requires an OpenCL implementation (vendor drivers from Apple, AMD, Nvidia, or open-source alternatives) installed on your system; pre-built wheels simplify setup but do not include OpenCL drivers themselves.
Verify before relying
- Whether pre-built wheels bundle OpenCL runtime or only headers/bindings
- Performance characteristics on specific hardware (GPUs, accelerators) relative to alternatives
- Maturity of support for recent OpenCL standards beyond 1.2
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (~=3.10) |
| Install friction | medium — platform-specific wheel |
| Runtime dependencies | 5 — importlib-resources, numpy, platformdirs, pytools, typing_extensions |
| Maintenance | actively maintained — 210 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 175,184/month — #10,268 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: pyopencl-2026.1.2-cp310-cp310-macosx_10_14_x86_64.whl; pyopencl-2026.1.2-cp310-cp310-macosx_11_0_arm64.whl; pyopencl-2026.1.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl; pyopencl-2026.1.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl; pyopencl-2026.1.2-cp310-cp310-musllinux_1_2_aarch64.whl; pyopencl-2026.1.2-cp310-cp310-musllinux_1_2_x86_64.whl; pyopencl-2026.1.2-cp310-cp310-win_amd64.whl; pyopencl-2026.1.2-cp311-cp311-macosx_10_14_x86_64.whl; pyopencl-2026.1.2-cp311-cp311-macosx_11_0_arm64.whl; pyopencl-2026.1.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl; pyopencl-2026.1.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl; pyopencl-2026.1.2-cp311-cp311-musllinux_1_2_aarch64.whl; pyopencl-2026.1.2-cp311-cp311-musllinux_1_2_x86_64.whl; pyopencl-2026.1.2-cp311-cp311-win_amd64.whl; pyopencl-2026.1.2-cp312-cp312-macosx_10_14_x86_64.whl; pyopencl-2026.1.2-cp312-cp312-macosx_11_0_arm64.whl; pyopencl-2026.1.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl; pyopencl-2026.1.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl; pyopencl-2026.1.2-cp312-cp312-musllinux_1_2_aarch64.whl; pyopencl-2026.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Tags
More Scientific/Engineering packages
NumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
pandaspandas provides fast, flexible data structures…
permissive · top 100 on PyPI
scipyscipy provides numerical algorithms for…
permissive · top 100 on PyPI
scikit-learnscikit-learn provides a comprehensive Python…
permissive · top 1,000 on PyPI
dilldill extends Python's pickle module to…
permissive · top 1,000 on PyPI
multiprocessMultiprocess is an enhanced fork of Python's…
permissive · top 1,000 on PyPI
pycudaPyCUDA provides Pythonic bindings to Nvidia's…
permissive · top 15,000 on PyPI
nvidia-cuda-ccclProvides NVIDIA CUDA C++ Core Compute Libraries…
unclear · top 5,000 on PyPI
nvidia-cuda-cccl-cu12Provides NVIDIA's CUDA C++ Core Compute…
unclear · top 15,000 on PyPI
nvidia-cuda-crtProvides NVIDIA CUDA C Runtime libraries for…
unclear · top 5,000 on PyPI
nvidia-cuda-runtimeProvides NVIDIA CUDA Runtime native libraries…
unclear · top 1,000 on PyPI
nvidia-cublas-cu12Provides NVIDIA CUBLAS native runtime libraries…
unclear · top 1,000 on PyPI
nvidia-cufileProvides Python bindings for NVIDIA's cuFile…
unclear · top 1,000 on PyPI
cuda-pythoncuda-python is a metapackage providing Pythonic…
unclear · top 5,000 on PyPI
nvidia-cuda-runtime-cu11Provides CUDA 11 runtime native libraries for…
unclear · top 5,000 on PyPI
nvidia-cufile-cu12Provides Python bindings for NVIDIA's cuFile…
unclear · top 5,000 on PyPI