Skip to main content

Quantum Launcher is modular tool, for solving many problems on many algorithms using many quantum computing backends

Project description

Quantum Launcher

About Project

Quantum Launcher 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.

Quantum Launcher 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.

Quantum Launcher

Supported features

Additionally to ability of quickly changing tested problem, algorithm or backend Quantum Launcher 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 quantum-launcher

Optional Installs

Quantum Launcher aims to work for many different architectures. Therefore in order to remain compatible with all of them Quantum Launcher 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 'quantum-launcher[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 Quantum Launcher and QCG PilotJob for more complex algorithm.

Supported problems, algorithms and backends

Quantum Launcher 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 quantum_launcher import QuantumLauncher
from quantum_launcher.problems import MaxCut
from quantum_launcher.routines.qiskit_routines import QiskitBackend, QAOA

# Selecting problem, algorithm and backend
problem = MaxCut.from_preset('default')
algorithm = QAOA(p=3)
backend = QiskitBackend('local_simulator')

# Selecting launcher (Quantum Launcher by default, but other can be used for profiling/parallel processing)
launcher = QuantumLauncher(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 quantum_launcher import QuantumLauncher
from quantum_launcher.problems import MaxCut
from quantum_launcher.routines.dwave_routines import SimulatedAnnealingBackend, DwaveSolver

# Selecting problem, algorithm and backend
problem = MaxCut.from_preset('default')
algorithm = DwaveSolver()
backend = SimulatedAnnealingBackend('local_simulator')

# Selecting launcher (Quantum Launcher by default, but other can be used for profiling/parallel processing)
launcher = QuantumLauncher(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

qlauncher-2.0.4.tar.gz (53.3 kB view details)

Uploaded Source

Built Distribution

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

qlauncher-2.0.4-py3-none-any.whl (71.8 kB view details)

Uploaded Python 3

File details

Details for the file qlauncher-2.0.4.tar.gz.

File metadata

  • Download URL: qlauncher-2.0.4.tar.gz
  • Upload date:
  • Size: 53.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for qlauncher-2.0.4.tar.gz
Algorithm Hash digest
SHA256 537a1b78c5df417691fec8bbad44f128f13510f465d11606f5e34468cf33cc55
MD5 c47fd51dca288b2434dd4fc92bb6eb3b
BLAKE2b-256 f4941a5584cda1119ec1d24d2855f395261cc183d827d65d0fbafe6ea5b105d8

See more details on using hashes here.

File details

Details for the file qlauncher-2.0.4-py3-none-any.whl.

File metadata

  • Download URL: qlauncher-2.0.4-py3-none-any.whl
  • Upload date:
  • Size: 71.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for qlauncher-2.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 733313dcd0218a160b2e093933e515039e48d31463f9d9e07ce4c1ab854dc546
MD5 66003d8cde8370dc65fd194980458bbb
BLAKE2b-256 6b0076b757a5ebf0f5cdd809c68a191b316160693bfccaf7de1eb247485f7f48

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