Backend drivers#

Qibo provides backends for quantum simulation on classical hardware and quantum hardware management and control. In the image below we present a schematic view of the currently supported backends.

../_images/backends.png

Quantum simulation is proposed through dedicated backends for single node multi-GPU and multi-threading CPU setups. Quantum hardware control is supported for chips based on superconducting qubits.

Following the overview description above, in this section we present the python packages for the modules and backends presented.


Base package#

  • qibo is the base package for coding and using the API. This package contains all primitives and algorithms for start coding quantum circuits, adiabatic evolution and more (see API reference). This package comes with a lightweight quantum simulator based on numpy which works on multiple CPU architectures such as x86 and arm64.

Simulation backends#

We provide multiple simulation backends for Qibo, which are automatically loaded if the corresponding packages are installed, following the hierarchy below:

  • numpy: a lightweight quantum simulator shipped with the qibo base package. Use this simulator if your CPU architecture is not supported by the other backends. Please note that the simulation performance is quite poor in comparison to other backends.

  • qibojit: an efficient simulation backend for CPU, GPU and multi-GPU based on just-in-time (JIT) compiled custom operators. Install this package if you need to simulate quantum circuits with large number of qubits or complex quantum algorithms which may benefit from computing parallelism.

  • tensorflow: a pure TensorFlow implementation for quantum simulation which provides access to gradient descent optimization and the possibility to implement classical and quantum architectures together. This backend is not optimized for memory and speed, use qibojit instead.

  • pytorch: a pure PyTorch implementation for quantum simulation which provides access to gradient descent optimization and the possibility to implement classical and quantum architectures together. This backend is not optimized for memory and speed, use qibojit instead.

  • clifford: a specialized backend for the simulation of quantum circuits with Clifford gates. This backend uses qibojit and/or numpy.

  • qibotn: an interface to Tensor Networks simulation algorithms designed for GPUs and multi-node CPUs. This backend makes possible scaling quantum circuit simulation to a larger number of qubits.

The default backend that is used is the first available from the above list. The user can switch to a different using the qibo.set_backend method (see Backends section for more details).

The active default backend will be printed as an info message the first time Qibo is imported in the code. If qibojit is not installed, an additional warning will appear prompting the user to install qibojit for increased performance and multi-threading and/or GPU capabilities. The logging level can be controlled using the QIBO_LOG_LEVEL environment variable. This can be set to 3 to hide info messages or 4 to hide both info and warning messages. The default value is 1 allowing all messages to appear.

Note

The qibojit backend implements in-place updates. This implies that the initial state is modified at runtime without performing any copies to save memory. For algorithms that require access to the initial state after its modification, such as quantum machine learning applications, it is suggested to perform a copy of the state explicitly if really needed by the algorithm.

Hardware backends & tools#

We provide the following hardware control backends for Qibo:

  • qibolab: a dedicated Qibo backend for the automatic deployment of quantum circuits on self-hosted quantum hardware. It includes: an API for arbitrary pulse sequence generation, drivers for multiple commercial and open-hardware control devices, and circuit to pulse transpilation software.

  • qibocal: is a python library that implements Quantum Characterization Validation and Verification using Qibo and Qibolab.

  • qibosoq: is the server that integrates Qick in the Qibolab ecosystem for executing arbitrary circuits and pulse sequences.

  • qibo-cloud-backends: provides access to cloud quantum hardware. This module is compatible with labs using Qibo for control and calibration and external vendors.