QLauncher is modular tool, for solving many problems on many algorithms using many quantum computing backends
Project description
QLauncher
About Project
QLauncher is a high-level Python library that simplifies the process of running quantum algorithms. The library aims to make it easier to run, test, benchmark, and optimize quantum algorithms by providing tools that work across diverse configurations.
The library contains a rich collection of preset problems and algorithms, eliminating the need to repeatedly implement foundational components such as problem-specific QUBO formulations or Hamiltonians. This approach significantly reduces the overhead when benchmarking different quantum approaches.
QLauncher introduces an intuitive architectural framework by dividing the quantum computation pipeline into three distinct components: Problem, Algorithm, and Backend. This separation creates a universal interface that allows researchers and developers to focus on specific aspects of quantum computation while maintaining compatibility across the entire ecosystem.
Supported features
Additionally to ability of quickly changing tested problem, algorithm or backend QLauncher comes with a bunch of useful features such as:
- Random problem instances generator.
- Automatic translation between problem formulations (e.g. QUBO -> Hamiltonian).
- QASM-based translation to match different frameworks (such as running qiskit's algorithm on cirq's computer).
- Asynchronous architecture to execute problems either standalone or in a grid.
- Access to more advanced workflows with qcg-pilotjob.
- Interface for simple profiling of algorithms.
- Creation of more complex workflows using WorkflowManager enabling splitting algorithms across multiple devices.
Installation
To install the following library use the following script:
pip install qlauncher
Optional Installs
QLauncher aims to work for many different architectures. Therefore in order to remain compatible with all of them QLauncher by default installs only necessary requirements allowing user to decide what frameworks does one want to use. To make installation easier, there is a bunch of downloads that can be done with optional dependencies, for example:
pip install 'qlauncher[orca]'
to install all requirements necessary to run qiskit algorithms.
- qiskit: support for IBM's qiskit algorithms and backends.
- orca: support for Orca Computing algorithms and backends NOTE library ptseries is not public therefore one needs to install it on it's own.
- dwave: support for D-Wave Systems algorithms and backends.
- cirq: support for Google's cirq backends.
- pilotjob: support for advanced job scheduling using QLauncher and QCG PilotJob for more complex algorithm.
Supported problems, algorithms and backends
QLauncher was made to simplify using of multiple different problems, algorithms and backends, therefore adding new things is relatively easy.
Supported problems:
- MaxCut
- Exact Cover
- Job Shop Shedueling
- Air Traffic Management
- Traveling Salesman Problem
- Graph Coloring
For now supported backends are:
- Qiskit
- Orca Computing
- D-wave
- AQT
- Cirq
Usage examples
Main idea of the project was to give a user quick and high level access to many different problems, algorithms and backends keeping interface simple. For example to solve MaxCut problem with QAOA on qiskit simulator all you need to type is:
# Necessary imports
from qlauncher import QLauncher
from qlauncher.problems import MaxCut
from qlauncher.routines.qiskit import QiskitBackend, QAOA
# Selecting problem, algorithm and backend
problem = MaxCut.from_preset('default')
algorithm = QAOA(p=3)
backend = QiskitBackend('local_simulator')
# Selecting launcher (QLauncher by default, but other can be used for profiling/parallel processing)
launcher = QLauncher(problem, algorithm, backend)
# Running the algorithm
result = launcher.run()
A key advantage of our library is that changing algorithms (such as switching to Quantum Annealing from Dwave) doesn't require manually specifying that MaxCut needs to provide QUBO representation - this translation happens automatically behind the scenes.
# Necessary imports
from qlauncher import QLauncher
from qlauncher.problems import MaxCut
from qlauncher.routines.dwave import SimulatedAnnealingBackend, DwaveSolver
# Selecting problem, algorithm and backend
problem = MaxCut.from_preset('default')
algorithm = DwaveSolver()
backend = SimulatedAnnealingBackend('local_simulator')
# Selecting launcher (QLauncher by default, but other can be used for profiling/parallel processing)
launcher = QLauncher(problem, algorithm, backend)
# Running the algorithm
result = launcher.run()
License
This project uses the To Be determined License.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file qlauncher-2.1.1.tar.gz.
File metadata
- Download URL: qlauncher-2.1.1.tar.gz
- Upload date:
- Size: 77.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4324a3fcc2c6f67d87fe42d6507c3d320723a12b1d192c5f1d86d7b2ff47a9b5
|
|
| MD5 |
f635e9658afe0cd5d8fbf0703b177f14
|
|
| BLAKE2b-256 |
914817a3d620ebbda4cdb8a421ba70c2ed4e3d0fd49dfdff579f252cf7ebd41e
|
File details
Details for the file qlauncher-2.1.1-py3-none-any.whl.
File metadata
- Download URL: qlauncher-2.1.1-py3-none-any.whl
- Upload date:
- Size: 102.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea2561a8e2163387ab3126c0ecae6b88b1930f177b807384059a6da3edda4561
|
|
| MD5 |
73cc789147928656d48ba8352971d772
|
|
| BLAKE2b-256 |
7a410d9efbba07f1c67e7b11148eaa349c1d3e42164f36b168b49949a176ef7d
|