Skip to main content

WebGPU accelerated visualization of unbounded neural data streams in Python

Project description

phosphor

GPU-accelerated real-time sweep renderer for multichannel timeseries data. Built on WebGPU and Qt, phosphor renders thousands of channels at high sample rates with minimal CPU overhead.

Designed for neuroscience and real-time signal monitoring -- push (n_samples, n_channels) numpy arrays and phosphor handles downsampling, autoscaling, and rendering.

Installation

pip install phosphor

Quick Start

import numpy as np
from PySide6.QtWidgets import QApplication
from phosphor import SweepConfig, SweepWidget

app = QApplication([])

widget = SweepWidget(SweepConfig(
    n_channels=128,
    srate=30000.0,
    display_dur=2.0,
    n_visible=64,
))
widget.show()

# Push data from any source -- shape: (n_samples, n_channels), float32
widget.push_data(np.random.randn(500, 128).astype(np.float32))

app.exec()

Embedding in an Existing Qt Application

SweepWidget is a standard QWidget that can be added to any layout:

from PySide6.QtWidgets import QMainWindow, QVBoxLayout, QWidget
from phosphor import SweepConfig, SweepWidget

class MyWindow(QMainWindow):
    def __init__(self):
        super().__init__()
        self.sweep = SweepWidget(SweepConfig(n_channels=64, srate=1000.0))
        self.setCentralWidget(self.sweep)

    def on_new_data(self, data):
        self.sweep.push_data(data)

Runtime Configuration

Update parameters without recreating the widget:

from phosphor import SweepConfig

widget.update_config(SweepConfig(
    n_channels=256,
    srate=30000.0,
    display_dur=4.0,
    n_visible=128,
))

Built-in Demo

python -m phosphor
python -m phosphor --channels 256 --srate 30000 --visible 64 --dur 2.0

Keyboard Controls

Key Action
Up / Down Scroll channels by 1
Page Up / Page Down Scroll channels by one page
[ / ] Halve / double visible channel count
- / = Y-axis zoom out / in (disables autoscale)
A Toggle autoscale
, / . Halve / double display duration

Future: Migration to fastplotlib

Phosphor currently uses custom WGSL shaders and raw wgpu-py for rendering. The plan is to migrate to fastplotlib (built on pygfx) once both libraries reach 1.0 (targeting mid-2026), which would eliminate the custom shader maintenance burden. The migration can happen in stages:

  1. Keep SweepBuffer -- the CPU-side circular buffer with incremental min/max downsampling is the core of phosphor's performance story. Neither pygfx nor fastplotlib provide built-in min/max downsampling for line data, so this logic stays.
  2. Replace GPURenderer + WGSL shaders with fastplotlib's LineStack, feeding it the already-downsampled min/max columns from SweepBuffer. This drops the custom pipeline/shader code and gains fastplotlib's built-in axes, colormapping, and interaction tools.
  3. Evaluate whether ChannelPlotWidget can be simplified or replaced by fastplotlib's Figure/Subplot layout, retaining the keyboard controls and channel pagination UX.

Development

We use uv for development.

  1. Fork and clone the repository
  2. uv sync to create a virtual environment and install dependencies
  3. uv run pre-commit install to set up linting and formatting hooks
  4. uv run pytest tests to run the test suite
  5. Submit a PR against the dev branch

Project details


Download files

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

Source Distribution

phosphor-0.6.0.tar.gz (29.4 kB view details)

Uploaded Source

Built Distribution

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

phosphor-0.6.0-py3-none-any.whl (30.0 kB view details)

Uploaded Python 3

File details

Details for the file phosphor-0.6.0.tar.gz.

File metadata

  • Download URL: phosphor-0.6.0.tar.gz
  • Upload date:
  • Size: 29.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for phosphor-0.6.0.tar.gz
Algorithm Hash digest
SHA256 7e1328235a4e5f4fbc1c63695b92953f810bb25e796fddf473fef503c770e302
MD5 20bb012dbd6b22346aac12b47379c35d
BLAKE2b-256 da9dceae133f6ca2810930b3f1d41fe17b9773459ac20a558888ca53855a1d92

See more details on using hashes here.

File details

Details for the file phosphor-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: phosphor-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 30.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for phosphor-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2628acf2a278dfb86eaaf9177a1591f854aea4a399638dda53dcf4fa68d7ad45
MD5 d94d81bdd9c2d21fe0f405d46afe0b27
BLAKE2b-256 5ac9eb5738d1d5313498ff5c7cfef9d8c84fb1e2aa9075ce199b5d9856f41309

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page