quri-parts-quantinuum

A plugin to use Quantinuum with QIRI Parts


Keywords
quantum, computing, quri-parts
License
Apache-2.0
Install
pip install quri-parts-quantinuum==0.23.0

Documentation

QURI SDK

QURI SDK is an open source library suite for creating and executing quantum algorithms on various quantum computers and simulators. QURI SDK focuses on the followings:

  • Modularity and extensibility: It provides small parts with which you can assemble your own algorithms. You can also use ready-made algorithms, customizing their details by replacing sub components easily.
  • Platform independence: Once you assemble an algorithm with QURI SDK, you can execute it on various quantum computers or simulators without modifying the main algorithm code. Typically you only need to replace a few lines to switch to a different device or simulator.
  • Performance: When dealing with a simulator, it is often the case that classical computation before and after quantum circuit simulation (such as data preparation and post processing) takes considerable time, spoiling performance of the simulator. We put an emphasis on computational performance and try to get the most out of simulators.

Covered areas and components

QURI SDK is a meta-package that bundles the following packages, ensuring that versions are always compatible.

  • Core components
    • quri-parts: Quantum circuit and operator library. QURI Parts contains abstractions that represent generic quantum circuits and operators, including noise, estimators, samplers, etc. It also features a wide range of transpilers and interfaces with commonly used quantum SDKs. In addition it features a quantum circuit synthesis module that allows for advanced construction of circuits for fault tolerant quantum computing (FTQC). QURI Parts is platform independent -- quantum simulation and device execution is facilitated through backends defined in various subpackages
      • Quantum circuit simulators
      • Quantum platforms/SDKs
      • Intermediate representation support
      • Higher level packages
        • quri-parts-qsub: Structured circuit generation for FTQC algorithms
        • quri-parts-algo: NISQ algorithm components
          • Ansatz, optimizer, error mitigation etc.
      • Chemistry
        • quri-parts-chem: General concepts
          • Fermion-qubit mapping, electron integrals, ansatz etc.
        • quri-parts-pyscf: PySCF
        • Library support
    • quri-algo: Quantum algorithms and components for FTQC and Early FTQC. Contains time-evolution circuit factories and abstractions for algorithms, cost-functions, various problem definitions. It uses a modular design in which individual solvers and objective functions can be replaced or rewritten easily. Algorithms in QURI Algo are written to interface with QURI VM, although they use an abstract interface that can be used with user-defined virtual machines defined independently of QURI SDK.
    • quri-vm: Quantum virtual machine library written to facilitate quantum resource estimation and device aware quantum circuit simulation. The user defines a VM which generates its own sampler and estimator as well as an analyzer for quantum circuit resource analysis.

Installation

QURI SDK requires Python 3.10 or later.

Use pip to install QURI Parts. Default installation only contains components not depending specific platforms (devices/simulators) or external libraries. You need to specify extras with square brackets ([]) to use those platforms and external libraries with QURI Parts:

# Default installation, no extras
pip install quri-sdk

# Use Qulacs, a quantum circuit simulator through its quri-parts interface
pip install "quri-sdk[qulacs]"

# Use Amazon Braket SDK
pip install "quri-sdk[braket]"

# Use Qulacs and OpenFermion, a quantum chemistry library for quantum computers
pip install "quri-sdk[qulacs,openfermion]"

Currently available extras for quri-parts are:

  • qulacs
  • braket
  • qiskit
  • cirq
  • openfermion
  • stim
  • openqasm
  • itensor
  • qsub
  • quantinuum
  • ionq
  • pyscf
  • tket
  • tensornetwork

You can also install individual components (quri-parts-*) directly. In fact, quri-parts is a meta package, a convenience method to install those individual components.

Documentation and tutorials

Documentation of QURI SDK is available at https://quri-sdk.qunasys.com/. Tutorials would be a good starting point.

Release notes

See Releases page on GitHub.

Contribution guidelines

If you are interested in contributing to QURI Parts, please take a look at our contribution guidelines.

Authors

QURI SDK developed and maintained by QunaSys Inc.. All contributors can be viewed on GitHub.

License

QURI Parts is licensed under Apache License 2.0. QURI Algo is licensed under an MIT license. QURI VM is licensed under an MIT license.