Go to file
Matthew Treinish bbd023b5e1
Leverage Rust circuit sequence construction for `OneQubitEulerDecomposer` (#9583)
* Leverage Rust circuit sequence construction for OneQubitEulerDecomposer

This commit is a follow-up to #9578 which added a rust implementation
of the second half of the single qubit euler decomposition routines and
leveraged them for the Optimize1qGatesDecomposition transpiler pass.
With that PR the Optimize1qGatesDecomposition no longer was dependent on
the OneQubitEulerDecomposer class. This commit continues from that PR
and updates the OneQubitEulerDecomposer to leverage the same Rust
implementation internally. Calling a decomposer object will internally
call the rust function to generate a circuit sequence and then return
either a QuantumCircuit or DAGCircuit (depending on the options).
Similarly all the angle computation is done directly in Rust.

* Add missing atol clamping to mod_2pi

The python version of the OneQubitEulerDecomposer class had atol
clamping on it's output from mod_2pi, when this function was ported to
rust this was not included. At the time it was because nothing set the
atol parameter when calling mod_2pi (the angle calculation in #9185 did
not have atol and the expansion to construct circuits for
Optimize1qGatesDecomposition always used the default value). However,
now that we're expanding OneQubitEulerDecomposer to internally do all
the calculations in rust we need to support an adjustable atol which
includes the missing endpoint clamping in mod_2pi. This commit adds this
missing functionality to the function.

* Add docstring to mod_2pi rust function

* Remove mod_2pi python function
2023-03-16 18:44:44 +00:00
.azure Fix `tox -e docs` for macOS (#9765) 2023-03-09 23:56:54 +00:00
.binder Add rust to binder configuration (#7732) 2022-03-04 02:32:17 +00:00
.cargo Implement multithreaded stochastic swap in rust (#7658) 2022-02-28 21:49:54 +00:00
.github Add structure for multiple Rust crates (#9742) 2023-03-07 23:12:39 +00:00
crates/accelerate Leverage Rust circuit sequence construction for `OneQubitEulerDecomposer` (#9583) 2023-03-16 18:44:44 +00:00
docs Fix docs build on case-insensitive systems (#9748) 2023-03-08 15:47:39 +00:00
examples refactored and optimized code (#9292) 2023-01-11 19:45:31 +00:00
qiskit Leverage Rust circuit sequence construction for `OneQubitEulerDecomposer` (#9583) 2023-03-16 18:44:44 +00:00
releasenotes new parameters in `plot_bloch_multivector`: `figsize`, `font_size`, and `title_font_size` (#7264) 2023-03-16 18:40:33 +00:00
test new parameters in `plot_bloch_multivector`: `figsize`, `font_size`, and `title_font_size` (#7264) 2023-03-16 18:40:33 +00:00
tools Add deprecation warning on use of qiskit.IBMQ (#8080) 2023-01-18 18:34:25 +00:00
.editorconfig Add .editorconfig (#6033) 2022-01-31 20:12:23 +00:00
.git-blame-ignore-revs Update git blame rev ignore list (#7620) 2022-02-03 21:31:01 +00:00
.gitignore Support reproducible builds of Rust library (#7728) 2022-03-03 17:47:13 +00:00
.local-spellings
.mailmap Update garrison's name in .mailmap (#7443) 2021-12-23 15:06:18 +00:00
.mergify.yml Bump main branch version post 0.23.0rc1 tag (#9396) 2023-01-20 14:18:44 +00:00
.stestr.conf
CODE_OF_CONDUCT.md
CONTRIBUTING.md Add `rust-toolchain.toml` for a consistent Rust development version (#9584) 2023-02-15 19:38:00 +00:00
Cargo.lock Add structure for multiple Rust crates (#9742) 2023-03-07 23:12:39 +00:00
Cargo.toml Add structure for multiple Rust crates (#9742) 2023-03-07 23:12:39 +00:00
LICENSE.txt
MANIFEST.in Remove non-existent files from MANIFEST.in (#9752) 2023-03-08 13:09:39 +00:00
Makefile Move release note in wrong location and add script to block this (#8320) 2022-07-12 12:16:03 +00:00
README.md Update slack invite link to https://qisk.it/join-slack (#9736) 2023-03-06 12:57:14 +00:00
SECURITY.md Add SECURITY.md to document security policy (#9589) 2023-02-16 11:26:57 -05:00
azure-pipelines.yml Attempt to trigger Azure pipelines on merge queue events (#9809) 2023-03-16 21:29:12 +00:00
constraints.txt Relax pin on sphinx-autodoc-typehints (#9379) 2023-01-17 13:48:35 +00:00
pyproject.toml Switch from .pylintrc to pyproject.toml and drop default options (#9644) 2023-03-01 15:24:13 +00:00
qiskit_bot.yaml Tag Eric in Rust changes (#9749) 2023-03-08 00:44:38 +00:00
requirements-dev.txt Upgrade Pylint to 2.16.2 (#9615) 2023-02-20 17:50:15 +00:00
requirements.txt Switch from retworkx to rustworkx package (#9162) 2022-11-18 20:44:53 +00:00
rust-toolchain.toml Add `rust-toolchain.toml` for a consistent Rust development version (#9584) 2023-02-15 19:38:00 +00:00
setup.py Fix `tox -e docs` for macOS (#9765) 2023-03-09 23:56:54 +00:00
tox.ini Remove shared `black`/`lint/`lint-incr` `envdir` in `tox.ini` (#9800) 2023-03-16 18:40:16 +00:00

README.md

Qiskit Terra

LicenseReleaseDownloadsCoverage StatusMinimum rustc 1.61.0

Qiskit is an open-source framework for working with noisy quantum computers at the level of pulses, circuits, and algorithms.

This library is the core component of Qiskit, Terra, which contains the building blocks for creating and working with quantum circuits, programs, and algorithms. It also contains a compiler that supports different quantum computers and a common interface for running programs on different quantum computer architectures.

For more details on how to use Qiskit you can refer to the documentation located here:

https://qiskit.org/documentation/

Installation

We encourage installing Qiskit via pip. The following command installs the core Qiskit components, including Terra.

pip install qiskit

Pip will handle all dependencies automatically and you will always install the latest (and well-tested) version.

To install from source, follow the instructions in the documentation.

Creating Your First Quantum Program in Qiskit Terra

Now that Qiskit is installed, it's time to begin working with Qiskit. To do this we create a QuantumCircuit object to define a basic quantum program.

from qiskit import QuantumCircuit
qc = QuantumCircuit(2, 2)
qc.h(0)
qc.cx(0, 1)
qc.measure([0,1], [0,1])

This simple example makes an entangled state, also called a Bell state.

Once you've made your first quantum circuit, you can then simulate it. To do this, first we need to compile your circuit for the target backend we're going to run on. In this case we are leveraging the built-in BasicAer simulator. However, this simulator is primarily for testing and is limited in performance and functionality (as the name implies). You should consider more sophisticated simulators, such as qiskit-aer, for any real simulation work.

from qiskit import transpile
from qiskit.providers.basicaer import QasmSimulatorPy
backend_sim = QasmSimulatorPy()
transpiled_qc = transpile(qc, backend_sim)

After compiling the circuit we can then run this on the backend object with:

result = backend_sim.run(transpiled_qc).result()
print(result.get_counts(qc))

The output from this execution will look similar to this:

{'00': 513, '11': 511}

For further examples of using Qiskit you can look at the example scripts in examples/python. You can start with using_qiskit_terra_level_0.py and working up in the levels. Also you can refer to the tutorials in the documentation here:

https://qiskit.org/documentation/tutorials.html

Executing your code on a real quantum chip

You can also use Qiskit to execute your code on a real quantum processor. Qiskit provides an abstraction layer that lets users run quantum circuits on hardware from any vendor that provides an interface to their systems through Qiskit. Using these providers you can run any Qiskit code against real quantum computers. Some examples of published provider packages for running on real hardware are:

You can refer to the documentation of these packages for further instructions on how to get access and use these systems.

Contribution Guidelines

If you'd like to contribute to Qiskit Terra, please take a look at our contribution guidelines. This project adheres to Qiskit's code of conduct. By participating, you are expected to uphold this code.

We use GitHub issues for tracking requests and bugs. Please join the Qiskit Slack community and use our Qiskit Slack channel for discussion and simple questions. For questions that are more suited for a forum we use the qiskit tag in the Stack Exchange.

Next Steps

Now you're set up and ready to check out some of the other examples from our Qiskit Tutorials repository.

Authors and Citation

Qiskit Terra is the work of many people who contribute to the project at different levels. If you use Qiskit, please cite as per the included BibTeX file.

Changelog and Release Notes

The changelog for a particular release is dynamically generated and gets written to the release page on Github for each release. For example, you can find the page for the 0.9.0 release here:

https://github.com/Qiskit/qiskit-terra/releases/tag/0.9.0

The changelog for the current release can be found in the releases tab: Releases The changelog provides a quick overview of notable changes for a given release.

Additionally, as part of each release detailed release notes are written to document in detail what has changed as part of a release. This includes any documentation on potential breaking changes on upgrade and new features. For example, you can find the release notes for the 0.9.0 release in the Qiskit documentation here:

https://qiskit.org/documentation/release_notes.html#terra-0-9

License

Apache License 2.0