Skip to main content

parallelbrot

PyPI Python Wheels

Mandelbrot set renderer with CPU, OpenCL and CUDA backends — a Python package for generating fractal images, and an interactive real-time viewer.

Mandelbrot Renderer Demo


Install

pip install parallelbrot
# or
uv add parallelbrot

Wheels are abi3, so one wheel per platform covers CPython 3.9 and up — the wheel is built on 3.9 and installs unchanged on 3.14.

Platform Wheel
Linux x86_64, aarch64 manylinux_2_28
macOS arm64 15.0+
macOS x86_64 14.0+
Windows x64

The macOS floors come from Homebrew's libomp, which the wheels bundle for multi-threaded rendering. On older macOS, install from source or conda-forge.


Command line

parallelbrot                                  # 1920x1080 -> mandelbrot.png
parallelbrot -o seahorse.png -s 3840x2160 \
    -c -0.743644,0.131826 -z 4000 -i 1000 --colors ocean
parallelbrot --info                           # what backends are usable here
parallelbrot -I                               # interactive pan-and-zoom window

-I opens a live viewer: drag to pan, scroll to zoom on the cursor, arrows to pan, +/- for iterations, C to cycle palettes, R to reset, Q to quit. It needs matplotlib — pip install 'parallelbrot[viewer]'.

Option Default Meaning
-o, --output mandelbrot.png Output path
-s, --size 1920x1080 WIDTHxHEIGHT
-c, --center -0.5,0.0 REAL,IMAG
-z, --zoom 1.0 Magnification
-i, --iterations 128 Escape limit
--colors fire Palette
-b, --backend auto auto, cpu, opencl, cuda
-I, --interactive Open a window instead of writing a file
-q, --quiet Suppress the summary line

PNG writing is built in, so the CLI needs nothing beyond NumPy.


Python API

import parallelbrot as pb

image = pb.render(1920, 1080)                 # (1080, 1920, 4) float32 RGBA

Zoom in on the seahorse valley, and save it:

import parallelbrot as pb

image = pb.render(
    1920, 1080,
    center=(-0.743644, 0.131826),
    zoom=4000,
    max_iterations=1000,
    color_scheme="fire",
)
pb.save_png("seahorse.png", image)

save_png needs nothing beyond NumPy. The array is ordinary float32, so Pillow, matplotlib or imageio all work on it too if you already have them:

import matplotlib.pyplot as plt

plt.imshow(pb.render(800, 600, zoom=200, center=(-0.75, 0.1)))
plt.axis("off")
plt.show()

render()

Argument Default Meaning
width, height Output size in pixels
center (-0.5, 0.0) Point on the complex plane at the image centre
zoom 1.0 Magnification; the view spans 4 / zoom
max_iterations 128 Escape limit — raise it as you zoom in
color_scheme "fire" ultra_fractal, fire, ocean or psychedelic
backend "auto" auto, cpu, opencl or cuda
origin "upper" upper puts row 0 at the top, as images expect

Returns an (height, width, 4) float32 array with values in [0, 1].

Choosing a backend

import parallelbrot as pb

pb.available_backends()   # ('cpu',) — compiled in and a device is present
pb.compiled_backends()    # ('cpu', 'opencl') — compiled in, device or not
pb.device_name("opencl")  # 'NVIDIA GeForce RTX 4070' or None
pb.has_openmp()           # is the CPU backend multi-threaded?

backend="auto" picks the fastest backend that has a working device, falling back to the CPU.

Rendering releases the GIL, so calls from separate threads run in parallel:

import parallelbrot as pb
from concurrent.futures import ThreadPoolExecutor

with ThreadPoolExecutor() as pool:                       # renders a zoom
    frames = list(pool.map(                              # sequence in parallel
        lambda z: pb.render(640, 480, zoom=z), [2**i for i in range(12)]
    ))

Which backends do you get?

CPU (OpenMP) OpenCL CUDA
pip install / uv add
conda-forge
built from source if headers found if nvcc found

PyPI wheels are CPU-only on purpose. Linking OpenCL makes the extension require an ICD loader at import time, which would break the package on machines without a GPU driver — including for people who only wanted the CPU backend. conda can declare that loader as a dependency, so the GPU builds live there.

The CPU backend is not a toy: OpenMP parallelises across rows with dynamic scheduling, since interior points cost far more than exterior ones. A 1920×1080 frame at 1000 iterations takes 37 ms on 16 cores, against 506 ms single-threaded.


Interactive viewer

A real-time pan-and-zoom window, built separately from the Python package.

make install-deps-ubuntu     # or -fedora, -arch, -macos
make opencl && bin/mandelbrot_opencl   # any GPU — recommended
make cuda   && bin/mandelbrot_cuda     # NVIDIA only, fastest
make cpu    && bin/mandelbrot_cpu      # always works
Input Action
Mouse drag Pan
Mouse wheel Zoom, centred on the cursor
Arrow keys Pan
+ / - Increase / decrease iterations
C Cycle colour schemes
R Reset view
Esc Quit

make help lists every target; make check-opencl and make check-cuda report what your machine can do.

Viewer dependencies

Component Linux macOS Windows (MSYS2)
Compiler g++ (GCC ≥ 9) Apple Clang MinGW-w64 g++
Build make, pkg-config make, pkg-config GNU make, pkg-config
OpenGL libgl1-mesa-dev, libglew-dev built-in mingw-w64-x86_64-glew
GLFW 3 libglfw3-dev brew install glfw mingw-w64-x86_64-glfw
OpenCL ocl-icd-opencl-dev + driver built-in framework mingw-w64-x86_64-opencl-icd
CUDA (optional) nvidia-cuda-toolkit + driver 470+ not supported CUDA Toolkit

GPU drivers: NVIDIA needs the proprietary driver or nvidia-opencl-dev; AMD needs rocm-opencl-runtime or mesa-opencl-icd; Intel needs intel-opencl-icd. macOS provides OpenCL itself.


Building from source

git clone https://github.com/prathamhole14/parallelbrot
cd parallelbrot

uv venv
uv pip install meson meson-python ninja    # must exist in the venv itself
uv sync                                    # editable install + dev dependencies

uv run pytest
uv run parallelbrot --info

Without uv:

python -m venv .venv && . .venv/bin/activate
pip install -U meson meson-python ninja
pip install -e . --no-build-isolation
pytest

Why the build tools go in the environment

An editable install of a Meson project keeps rebuilding itself: build.ninja records the path of the meson that configured it, and re-runs it whenever a source file changes. Installed the usual way, that path points inside the installer's temporary build environment, which is deleted as soon as the install finishes. Every later import then fails:

/home/you/.cache/uv/builds-v0/.tmpXXXX/bin/meson: not found
ImportError: rebuilding the "parallelbrot" editable package failed

pip does the same thing with /tmp/pip-build-env-*. Both are fixed the same way: put meson, meson-python and ninja in the target environment and build without isolation, so the recorded path still exists afterwards. This project sets no-build-isolation-package in [tool.uv] so uv sync does that automatically once the tools are present — which is why they are installed first above.

To repair an environment already in this state:

rm -rf build
uv sync --reinstall-package parallelbrot     # or: pip install -e . --no-build-isolation

--reinstall-package is needed because uv will otherwise relink a cached copy of a previous editable install and skip the build, leaving no build/ directory for the rebuild hook to use.

Build options are Meson features, so absent tooling degrades the build rather than failing it:

uv sync -C setup-args=-Dopencl=enabled    # fail if OpenCL is missing
uv sync -C setup-args=-Dopenmp=disabled   # single-threaded CPU backend
python -m build --wheel                   # a cp3XX-abi3 wheel

macOS needs brew install libomp for a multi-threaded CPU backend — Apple Clang ships without OpenMP. pb.has_openmp() tells you which you got.

Layout

include/parallelbrot/core.hpp   Shared View struct + backend entry points
src/core/                       Compute cores — no windowing, no Python
src/cpu|opencl|cuda/            Interactive frontends + device kernels
src/python/                     CPython extension (limited API)
src/parallelbrot/               Python package
meson.build, pyproject.toml     Wheel build
Makefile                        Interactive viewer binaries

The compute cores carry no GLFW, OpenGL or Python headers, so the same code serves the viewer, the Python package and the tests.


License

MIT — see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

parallelbrot-0.2.1.tar.gz (2.9 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

parallelbrot-0.2.1-cp39-abi3-win_amd64.whl (263.1 kB view details)

Uploaded CPython 3.9+Windows x86-64

parallelbrot-0.2.1-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (133.1 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

parallelbrot-0.2.1-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (129.1 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

parallelbrot-0.2.1-cp39-abi3-macosx_15_0_arm64.whl (261.2 kB view details)

Uploaded CPython 3.9+macOS 15.0+ ARM64

parallelbrot-0.2.1-cp39-abi3-macosx_14_0_x86_64.whl (292.8 kB view details)

Uploaded CPython 3.9+macOS 14.0+ x86-64

File details

Details for the file parallelbrot-0.2.1.tar.gz.

File metadata

  • Download URL: parallelbrot-0.2.1.tar.gz
  • Upload date:
  • Size: 2.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for parallelbrot-0.2.1.tar.gz
Algorithm Hash digest
SHA256 4b6ae384fcd758d0bd81b4ebed091b4951693bf53e54a909681c40a0b7f9d525
MD5 f5c8d247955d49fddb7e668c06c67ebf
BLAKE2b-256 56b943dd2fb79499fa3c29586db4ef7d95b91c0189321320f2c42762dc0c4c1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for parallelbrot-0.2.1.tar.gz:

Publisher: wheels.yml on prathamhole14/parallelbrot

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file parallelbrot-0.2.1-cp39-abi3-win_amd64.whl.

File metadata

  • Download URL: parallelbrot-0.2.1-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 263.1 kB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for parallelbrot-0.2.1-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 261f63e324971b35c772995b85bd0cbc421fecbc50219cba02a0d4e6708228f9
MD5 b1d7702ec33e94600e9d822dc83e4d64
BLAKE2b-256 f0f2c98647ff3fee86ecaa176127a41f624b254dcbd9eda766e2a47ebff0b64e

See more details on using hashes here.

Provenance

The following attestation bundles were made for parallelbrot-0.2.1-cp39-abi3-win_amd64.whl:

Publisher: wheels.yml on prathamhole14/parallelbrot

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file parallelbrot-0.2.1-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for parallelbrot-0.2.1-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d153c3a97d5c993ffc590224d5684ce339d0dca7f9d5cf5c13bd8a59365b117d
MD5 2c24f97cefdea605ab74f8b5acf0f1b8
BLAKE2b-256 83b5878c618e5199dafe5d0c13d5726681a0449bba438e22d4444348ba6dff7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for parallelbrot-0.2.1-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on prathamhole14/parallelbrot

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file parallelbrot-0.2.1-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for parallelbrot-0.2.1-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0769b9e587bcc057bb16f18b8983a0e20236ad8347086f0469203c720c26fd2
MD5 3df5e516af5523069242c1beda7c6dc3
BLAKE2b-256 060b37593a623938648368d55750bd90acad8f94950bdf96135ac69aefc5f770

See more details on using hashes here.

Provenance

The following attestation bundles were made for parallelbrot-0.2.1-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on prathamhole14/parallelbrot

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file parallelbrot-0.2.1-cp39-abi3-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for parallelbrot-0.2.1-cp39-abi3-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 8014a941480d03b78f03f1d80c25e429b08f16b2bb92988a9e80ab4e7d0185d3
MD5 eb4b0a1ab296959a25ba85de50e9f7e6
BLAKE2b-256 0fc379af72824eb2540c98ace4cf43be8ae9d04129e861229bc958390592969c

See more details on using hashes here.

Provenance

The following attestation bundles were made for parallelbrot-0.2.1-cp39-abi3-macosx_15_0_arm64.whl:

Publisher: wheels.yml on prathamhole14/parallelbrot

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file parallelbrot-0.2.1-cp39-abi3-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for parallelbrot-0.2.1-cp39-abi3-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 bc8a34fb7e1dc149e96311b3794f6db79d05a885429ee008c28f3f6f23b45afa
MD5 c6465e7019be825213ef074ca040d6a5
BLAKE2b-256 5f4863032b305318f5ea41663a71a7ebcd0565cae9ca4ae718d08956f270fae0

See more details on using hashes here.

Provenance

The following attestation bundles were made for parallelbrot-0.2.1-cp39-abi3-macosx_14_0_x86_64.whl:

Publisher: wheels.yml on prathamhole14/parallelbrot

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.2.1 This release

6 files

0.1.1

6 files

0.1.0

6 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page