9 releases (5 breaking)
0.6.0 | Oct 15, 2024 |
---|---|
0.5.0 | Oct 1, 2024 |
0.4.0 | Sep 16, 2024 |
0.3.0 | Sep 9, 2024 |
0.1.0-alpha.1 | May 24, 2024 |
#42 in Programming languages
1,049 downloads per month
Used in 2 crates
445KB
9K
SLoC
tket2: The Hardware Agnostic Quantum Compiler
TKET2 is an open source quantum compiler developed by Quantinuum. Central to TKET2's design is its hardware agnosticism which allows researchers and quantum software developers to take advantage of its powerful compilation for many different quantum architectures.
Circuits are represented using the HUGR IR defined in the hugr crate. TKET2 augments Hugr with
- The
Circuit
trait, providing a high-level interface for working with HUGRs representing quantum circuits - a HUGR extension with quantum operations
- A composable pass system for optimising circuits
- A number of built-in rewrite utilities and passes for common optimisations
This crate is interoperable with tket1
circuits via its
serial encoding.
Using TKET2
Defining a circuit in TKET2 is currently done by using the low-level hugr Builder API, or by loading tket1 circuits from JSON files.
use tket2::{Circuit, Hugr};
// Load a tket1 circuit.
let mut circ: Hugr = tket2::json::load_tk1_json_file("test_files/barenco_tof_5.json").unwrap();
assert_eq!(circ.qubit_count(), 9);
assert_eq!(circ.num_gates(), 170);
// Traverse the circuit and print the gates.
for command in circ.commands() {
println!("{:?}", command.optype());
}
// Render the circuit as a mermaid diagram.
println!("{}", circ.mermaid_string());
// Optimise the circuit.
tket2::passes::apply_greedy_commutation(&mut circ);
Please read the API documentation here.
Features
-
portmatching
Enables pattern matching using theportmatching
crate. -
rewrite-tracing
Adds opt-in tracking of the rewrites applied to a circuit.
Recent Changes
See CHANGELOG for a list of changes. The minimum supported rust version will only change on major releases.
Developing TKET2
See DEVELOPMENT.md for instructions on setting up the development environment.
License
This project is licensed under Apache License, Version 2.0 (LICENSE or http://www.apache.org/licenses/LICENSE-2.0).
Dependencies
~18–30MB
~474K SLoC