Skip to main content

Fluence quantum-classical scheduling coordination library (sidecar + interceptor + providers)

Project description

fluence (Python)

Quantum-classical scheduling coordination library for the Fluence Kubernetes scheduler. Import name fluence; distributed on PyPI as fluence-hpc.

This package is built into the Fluence sidecar image and staged into user application containers at admission time — users never install it.

What it does

A hybrid quantum-classical workflow submits work to two queues: the Kubernetes scheduler (classical) and a QPU vendor API (quantum). Classical worker pods would idle while the QPU queue drains. Fluence gates the workers until the quantum task is about to run, then releases them. This library is the runtime half:

  • interceptor (fluence.interceptor) — runs inside the user container, monkey-patches the vendor SDK submit call to tag each task with the pod UID.
  • sidecar (fluence.sidecar) — runs in a sidecar container, discovers the tagged task, polls queue position, and ungates the classical workers when the task is ready (or, in observe-only mode, just records the queue position).
  • providers (fluence.providers) — per-vendor plug-ins implementing both halves. Providers self-register on import.

Delivery (Model C)

The interceptor must run in the user's container, which does not have this package installed. Rather than require a user install or concatenate a text snippet, the Fluence webhook:

  1. injects an init container (the sidecar image) running python -m fluence.stage <dir>, which copies the pure-Python fluence package plus a sitecustomize.py into a shared emptyDir;
  2. mounts that volume into the user container and prepends <dir> to PYTHONPATH.

Python imports sitecustomize automatically on every interpreter start (python app.py included — unlike PYTHONSTARTUP, which only fires for interactive sessions), so import fluence.interceptor runs before user code. The interceptor patches whichever vendor SDK is present and fail-soft skips the rest. No user code changes, no vendor SDKs added to the user image.

Adding a provider

Add one module under fluence/providers/ that subclasses Provider, implements install_interceptor (tag hook), matches, find_my_task, is_ready_to_ungate, queue_position (optional), and job_id, and calls register(PROVIDER). Import it from fluence/providers/__init__.py. Nothing else changes.

Tests

python3 python/tests/test_fluence.py

Building and releasing

The package is distributed on PyPI as fluence-hpc (the import name fluence is already taken on PyPI). It is also baked into the sidecar image, so a release moves the package version and the image tag together.

Build the distributions

From python/:

pip install --upgrade build twine
python -m build

This produces dist/fluence_hpc-<version>-py3-none-any.whl and dist/fluence_hpc-<version>.tar.gz. Upload both.

Test on TestPyPI first

twine upload --repository testpypi dist/*
pip install --index-url https://test.pypi.org/simple/ fluence-hpc
python -c "import fluence; print(fluence.__version__)"

Release to PyPI

twine upload dist/*

After this, pip install fluence-hpc works anywhere and imports as fluence.

Versioning

Bump version in pyproject.toml and __version__ in fluence/__init__.py together (PyPI refuses to overwrite an existing version). Because the package is version-locked into the sidecar image, tag the release so the image and the package share a version — e.g. a v0.1.1 git tag triggers both the sidecar-build-deploy workflow (image) and a PyPI publish.

Automated release (recommended)

Prefer GitHub Actions with PyPI Trusted Publishing (OIDC) over manual token uploads: register the repo + workflow once on PyPI, then a release workflow triggered by a version tag builds with python -m build and uploads with pypa/gh-action-pypi-publish — no stored secret. The Docker image is built by .github/workflows/sidecar-build-deploy.yaml on the same tag, keeping the package version and image tag in lockstep.

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

fluence_hpc-0.0.0.tar.gz (13.4 kB view details)

Uploaded Source

Built Distribution

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

fluence_hpc-0.0.0-py3-none-any.whl (13.6 kB view details)

Uploaded Python 3

File details

Details for the file fluence_hpc-0.0.0.tar.gz.

File metadata

  • Download URL: fluence_hpc-0.0.0.tar.gz
  • Upload date:
  • Size: 13.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.2

File hashes

Hashes for fluence_hpc-0.0.0.tar.gz
Algorithm Hash digest
SHA256 7592c484268f1b4415f2e3e5113c0a35b90d96644c3afb37be51742a3568b671
MD5 004e0ef4dfd5d7ebac019022143b5c3a
BLAKE2b-256 c39d93b0efeb43be64534710fbcb3ce70fdf669e3d4a165e97ee733fa88e6c99

See more details on using hashes here.

File details

Details for the file fluence_hpc-0.0.0-py3-none-any.whl.

File metadata

  • Download URL: fluence_hpc-0.0.0-py3-none-any.whl
  • Upload date:
  • Size: 13.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.2

File hashes

Hashes for fluence_hpc-0.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 27bca47e931b42bafed38fa1e0f5d8bf92fd0bd391381138bb08829b56fd1789
MD5 dccadbd6e0128483d3ff2167bc32448b
BLAKE2b-256 a016f51962c06f8e73082000a619189e3d0c792ed9c35413c83e131f18c8ddca

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