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.13.tar.gz (20.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.13-py3-none-any.whl (19.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: fluence_hpc-0.0.13.tar.gz
  • Upload date:
  • Size: 20.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.13.tar.gz
Algorithm Hash digest
SHA256 82d4bb512c63c5de2646649d434e70a7bc51b13d080c35131795dc5ececbe461
MD5 d6522a5c3c50a0c588a186113cde567b
BLAKE2b-256 97df9ae653695c5ed694d6af1380fc09bbf7027ccb648fa14ccc63677042f6c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fluence_hpc-0.0.13-py3-none-any.whl
  • Upload date:
  • Size: 19.0 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.13-py3-none-any.whl
Algorithm Hash digest
SHA256 8a6ffabadfaa4823013bffdf28b123aff093c2bd3d79f9be96260a0c7ebe5b51
MD5 a968f198022c858023681179f051ca5f
BLAKE2b-256 a9786b239e8764605c501310e7b4fe4a65ca07345a09615bb4a3b1bcb2d9330b

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