9 releases

0.0.10 Nov 6, 2024
0.0.9 Nov 6, 2024
0.0.8 Oct 8, 2024
0.0.7 Sep 19, 2024
0.0.2 Jul 5, 2024

#509 in Algorithms

Download history 96/week @ 2024-09-19 13/week @ 2024-09-26 164/week @ 2024-10-03 56/week @ 2024-10-10 2/week @ 2024-10-17 8/week @ 2024-10-24 223/week @ 2024-10-31 1631/week @ 2024-11-07 1293/week @ 2024-11-14 1890/week @ 2024-11-21 1505/week @ 2024-11-28 1804/week @ 2024-12-05 1691/week @ 2024-12-12 1066/week @ 2024-12-19 663/week @ 2024-12-26 1730/week @ 2025-01-02

5,617 downloads per month

Custom license

215KB
6K SLoC

A rust based quantum circuit synthesis library

If you want a quick way to use those algorithms, you might want to check the python wrapper around this library.


lib.rs:

rustiq-core is a quantum circuit synthesis library.

It contains data structures representing various mathematical objects together with synthesis methods able to generate efficient circuits targeting 2-qubit gate count or depth.

Data structures

  • CliffordCircuit and CliffordGate - Data structures used to represent Clifford gates and circuits.
  • PauliSet - A data structure used to store a list of Pauli operators. The list can be efficiently conjugated by CliffordGate or CliffordCircuit objects.
  • Tableau - A Clifford Tableau implementation built on top of PauliSet.
  • IsometryTableau - An extension of the Tableau data structure that describes a Clifford operator applied to a partially stabilized input.
  • GraphState - A data structure representing a graph state

Synthesis algorithms

All synthesis algorithms are located in the [synthesis] submodule.

Dependencies

~3MB
~44K SLoC