Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Divi

Generate, parallelize, and execute quantum programs at scale.

PyPI Python Docs License Code style: black Checked with pyrefly


Divi is a Python library by Qoro Quantum for building and running quantum programs at scale. It handles circuit generation, job parallelization, and cloud execution — with built-in support for variational algorithms, custom workflows, and more — so you can focus on the quantum problem, not the plumbing.

📦 Installation

pip install qoro-divi

That covers local and cloud execution, VQE, QAOA, and program ensembles. Heavier features live behind optional extras — pennylane (PennyLane circuits, operators, and molecules), aer (Qiskit Aer backends), qubo-decompose (partitioned QUBO solving), chem (PySCF/OpenFermion chemistry), ai, and jupyter — or pip install "qoro-divi[all]" for everything. See the installation guide for what each unlocks and what keeps working without it.

Nightly Builds

To install the latest development build (published daily from main):

pip install qoro-divi --pre

Learning Divi

For the shortest introduction, start with the five-minute tutorial. Algorithm guides, execution guides, and the API reference live at divi.readthedocs.io; hands-on examples are in the tutorials/ folder.

⚡ At-Scale Example

Split a graph into quantum-sized MaxCut problems, solve the partitions, and stitch their candidates into a global solution:

import networkx as nx

from divi.backends import MaestroSimulator
from divi.qprog import BeamSearchStrategy
from divi.qprog.optimizers import ScipyOptimizer, ScipyMethod
from divi.qprog.problems import GraphPartitioningConfig, MaxCutProblem
from divi.qprog.workflows import PartitioningProgramEnsemble

graph = nx.barbell_graph(4, 0)
problem = MaxCutProblem(
    graph,
    config=GraphPartitioningConfig(
        max_n_nodes_per_cluster=4,
        partitioning_algorithm="kernighan_lin",
    ),
)

backend = MaestroSimulator()
ensemble = PartitioningProgramEnsemble(
    problem=problem,
    n_layers=1,
    backend=backend,
    optimizer=ScipyOptimizer(method=ScipyMethod.COBYLA),
    max_iterations=10,
    seed=42,
)

ensemble.run()
cut, _ = ensemble.aggregate_results(
    strategy=BeamSearchStrategy(beam_width=3, n_partition_candidates=5)
)
print(f"Cut edges: {nx.cut_size(graph, cut)}")
print(f"Circuits executed: {ensemble.total_circuit_count}")

PartitioningProgramEnsemble handles decomposition, parallel execution, and candidate aggregation while each partition remains small enough for the chosen backend.

🌐 Cloud Execution with Qoro Service

Run the same workflow on Qoro's cloud platform by swapping only the backend:

from divi.backends import QoroService

backend = QoroService()  # reads QORO_API_KEY from .env or environment

Get started for free → Sign up at dash.qoroquantum.net and receive $100 worth of credits to run your first quantum programs on our cloud.

🤖 divi-ai: AI Coding Assistant

Ask questions about Divi directly in your terminal — no API keys, no internet required after setup.

pip install qoro-divi[ai]
divi-ai

Answers questions about Divi APIs, generates code examples, and explains concepts — powered by a local LLM that runs entirely on your machine. See the full documentation for model options and usage.

🧩 Key Features

Feature Description
VQE & QAOA Built-in variational algorithms with pluggable ansätze and optimizers
Circuit Pipelines Expand → execute → reduce pattern for complex circuit workflows
Program Ensembles Parallel execution of multiple quantum programs with automatic scheduling, over one round or many adaptive ones
Flexible Backends MaestroSimulator for local simulation, QiskitSimulator for Qiskit-native noise models (extra: aer), QoroService for cloud execution
Execution Config Control bond dimension, simulator type, and simulation method per job
Live Reporting Real-time dashboards and convergence tracking via callbacks

Contributing

Contributions are welcome! See CONTRIBUTING.md for development setup, testing, and code style guidelines.

📄 License

Apache 2.0 — see LICENSE for details.

Release files for qoro-divi 0.15.0.dev20260919

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for qoro-divi 0.15.0.dev20260919
File Size Uploaded
qoro_divi-0.15.0.dev20260919.tar.gz 21.6 MB Details

Built distribution (wheel)

Table of built distributions (wheels) for qoro-divi 0.15.0.dev20260919
File Interpreter ABI Platform
qoro_divi-0.15.0.dev20260919-py3-none-any.whl Python 3 none any Details

Total release size: 42.3 MB

Release files / qoro_divi-0.15.0.dev20260919.tar.gz

Download URL qoro_divi-0.15.0.dev20260919.tar.gz
Size 21.6 MB
Tags Source
SHA-256 checksum
How to use checksums
15cfee7ea8e31f84db5c9569809a44e05727b84dd965969958a7c3f37b9304ad
BLAKE2b-256 checksum
How to use checksums
8016e2d15c0a42f35f7a7f9dc45983bc4b9a97ab6897d098ef4dda8593b1e23c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 19, 2026.

Transparency log

Release files / qoro_divi-0.15.0.dev20260919-py3-none-any.whl

Download URL qoro_divi-0.15.0.dev20260919-py3-none-any.whl
Size 20.7 MB
Tags Python 3
SHA-256 checksum
How to use checksums
ef6fac49b3e9565506924145e864333e7d5b59b55b94959dfc74dea2a2a83547
BLAKE2b-256 checksum
How to use checksums
6978422a638b5ab93a7ad12063733404c2e4c882c6aee9145c988301688cd7ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 19, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.13.0

2 release files

0.11.1

2 release files

0.11.0

2 release files

0.10.0

2 release files

0.9.0

2 release files

0.8.0

2 release files

0.7.0

2 release files

0.6.1

2 release files

0.6.0

2 release files

0.5.0

2 release files

0.4.2

2 release files

0.4.1

2 release files

0.4.0

2 release files

0.3.5

2 release files

0.3.4

2 release files

0.3.3

2 release 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