目录
Alexander Ivrii

Improve annotated plugin (#13916)

  • Moving all internal fields into a separate class

  • making all the inner functions to be global

  • moving handling annotated operations to plugin

The interface is now quite ugly, and we also have an extra isinstance check for each gate, we will see if it can be removed.

  • improving control-modified synthesis plugin

  • Changing internal functions to work with QuantumCircuits instead of DAGCircuits

  • renaming

  • Removing unnecessary argument use_ancillas

This argument is not needed as the qubit tracker already restricts allowed ancilla qubits.

  • progress

  • minor

  • removing context

  • minor

  • removing unused argument

  • removing an obsolete statement

  • minor cleanup

  • minor

  • improvements to run method

  • cleanup

  • another pass over the run method + black

  • minor cleanup

  • pass over synthesize_operation

  • more cleanup

  • pass over HLS::run

  • cleanup

  • pass over annotated plugin

  • cleanup

  • improving comment

  • fixing pylint

  • remove print statements in tests

  • fmt

  • fix + test for controlling circuits with nontrivial phase

  • adding release notes

  • adding test function docstring

  • minor

  • Finalizing data class contruction

  • adding error message

  • Adding method op_names to HighLevelSynthesisPluginManager

This is used to simplify the check whether a given node/operation can be skipped.

  • updating old usages of equiv library

  • fixing lint errors after merge

  • slightly simplifying the arguments to instruction_supported method

  • Fixing definition method for PyGate and PyInstruction

  • docstring fixes

  • applying Julien’s suggestion

  • adding intern

  • replacing data by _data (accidentally removed in cleanup)

  • porting main functionality to rust

  • Adding missing functionality

  • passing empty dict to dag_to_circuit when None

  • Adding definition for UnitaryGate

Even when HighLevelSynthesis runs directly after UnitarySynthesis, it may happen that certain definitions involve UnitaryGates (for instance, this is the case for Isometry), in which case the default behavior of HighLevelSynthesis should be to query the definition of UnitaryGates if they are not in the basis.

  • Replacing from_circuit_data by clone_empty_like

Going from QuantumCircuit/DAGCircuit to CircuitData discards information, such as information about registers, input variables and more. The previously tried approach of constructing DAGCircuit/QuantumCircuitData in rust space by calling _from_circuit_data and manually fixing registers was not complete. Instead we now call clone_empty_like both on DAGCircuit and QuantumCircuit.

  • making target of type Option<Py> and avoiding expensive cloning

  • changing type of equivalence library as well

  • adding pickling support

this actually requires dill since HLSConfig includes a lambda function for comparing circuits obtained with different synthesis plugins, but fortunately it’s all already supported

  • Passing Bound to functions

This avoids cloning data when calling Python

  • Using Bound in functions

This avoid having to clone it when calling the Python space

  • Removing the pub keywork in front of HLS structs, members and internal functions

  • Adding function to return a definition for a given operation.

The main functionality is to create some default definition for unitary gates, for all other operation types we can simply use the definition method.

  • pylint

  • clippy

  • Adding tests for HLS tracking global phase.

With various conversions of DAGCircuit to QuantumCircuitData to CircuitData in Rust, it’s best to make sure that the global phases appearing in circuits/control-flow subcircuits are tracked correctly

  • cleanup

  • removing unnecessary changes to other files

  • improving Rust HLS interface; skipping synthesis of already supported ops when calls from annotated plugin

  • Moving the default plugin for synthesizing annotated operations to a separate file

  • Fixing synthesis of an annotated operation with an empty list of modifiers; adding test

  • Recursively combining the modifiers and canonicalizing this list.

This leads to significantly improved synthesis results when adding multiple controls to a gate. Previously, first controlling a CX with 2 controls, and then controlling the results with 3 controls, first resulted in expanding the CCCX gates into single- and two-qubits gates, adding controls to each of these gates, and then expanding each of these controlled gates. Now, a single MCX gate will be produced, which will then be expanded using the best MCX synthesis algorithm available.

  • Adding tests that verify that HLS correctly combines control states for control modifiers

  • improving handling of CZ-gates; adding quality tests for controlled X and Z gates

  • clippy

  • clippy

  • Simple version of conjugate reduction.

This is a simplified version from the unused code from the OptimizeAnnotated transpiler pass. It’s especially useful for controlled QFT-adder and similar circuits.

  • Adding annotated argument to adder_qft_d00

This allows to let the default QFT-based adder plugins to create the inverse QFTGate as an AnnotatedOperation, allowing to exploit optimizations in the HighLevelSynthesis transpiler pass

  • adjusting HLS plugins + adding quality test for controlled qft adder

  • preliminary release notes

  • Fully adapting solution for synthesizing base operation of an annotated gates from add_control, but with the twist that some other high-level gate names are also supported; fixing failing tests that are synthesized differently (and actually better) using the new flow

  • fix conflicts after merge

  • Fixing test to check for gates that should belong to the given multiplier synthesis algorithm, and not the synthesis of the underlying QFT gate.

  • Adding comments

  • updating code after merging with main

  • finalize merge with main

  • using pyo3 get/set

  • avoding extra casts u32 -> usize when possible

  • avoiding multiple calls to data.borrow()

  • changing QubitTracker from being a Python class

  • applying Eli’s review comments

  • also applying renames on the python side

  • Applying more of Eli’s comments

  • typo

  • Addressing the review comment of creating a single source of truth list for deciding which gates have efficient synthesis algorithms for their controlled versions

  • extending tests to control-annotated gates

  • review comment

  • Improving conjugate reduction and adding tests

  • making the test more explicit

  • lint

  • improving reno

  • additional reno

  • adding tests for CZGate

  • minor cleanup

  • typo

9小时前9372次提交
目录README.md

Qiskit

License Current Release

Downloads Coverage Status PyPI - Python Version Minimum rustc 1.79 Downloads DOI

Qiskit is an open-source SDK for working with quantum computers at the level of extended quantum circuits, operators, and primitives.

This library is the core component of Qiskit, which contains the building blocks for creating and working with quantum circuits, quantum operators, and primitive functions (Sampler and Estimator). It also contains a transpiler that supports optimizing quantum circuits, and a quantum information toolbox for creating advanced operators.

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

https://docs.quantum.ibm.com/

Installation

We encourage installing Qiskit via pip:

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.

Create your first quantum program in Qiskit

Now that Qiskit is installed, it’s time to begin working with Qiskit. The essential parts of a quantum program are:

  1. Define and build a quantum circuit that represents the quantum state
  2. Define the classical output by measurements or a set of observable operators
  3. Depending on the output, use the Sampler primitive to sample outcomes or the Estimator primitive to estimate expectation values.

Create an example quantum circuit using the QuantumCircuit class:

import numpy as np
from qiskit import QuantumCircuit

# 1. A quantum circuit for preparing the quantum state |000> + i |111> / √2
qc = QuantumCircuit(3)
qc.h(0)             # generate superposition
qc.p(np.pi / 2, 0)  # add quantum phase
qc.cx(0, 1)         # 0th-qubit-Controlled-NOT gate on 1st qubit
qc.cx(0, 2)         # 0th-qubit-Controlled-NOT gate on 2nd qubit

This simple example creates an entangled state known as a GHZ state $(|000\rangle + i|111\rangle)/\sqrt{2}$. It uses the standard quantum gates: Hadamard gate (h), Phase gate (p), and CNOT gate (cx).

Once you’ve made your first quantum circuit, choose which primitive you will use. Starting with the Sampler, we use measure_all(inplace=False) to get a copy of the circuit in which all the qubits are measured:

# 2. Add the classical output in the form of measurement of all qubits
qc_measured = qc.measure_all(inplace=False)

# 3. Execute using the Sampler primitive
from qiskit.primitives import StatevectorSampler
sampler = StatevectorSampler()
job = sampler.run([qc_measured], shots=1000)
result = job.result()
print(f" > Counts: {result[0].data["meas"].get_counts()}")

Running this will give an outcome similar to {'000': 497, '111': 503} which is 000 50% of the time and 111 50% of the time up to statistical fluctuations. To illustrate the power of the Estimator, we now use the quantum information toolbox to create the operator $XXY+XYX+YXX-YYY$ and pass it to the run() function, along with our quantum circuit. Note that the Estimator requires a circuit without measurements, so we use the qc circuit we created earlier.

# 2. Define the observable to be measured 
from qiskit.quantum_info import SparsePauliOp
operator = SparsePauliOp.from_list([("XXY", 1), ("XYX", 1), ("YXX", 1), ("YYY", -1)])

# 3. Execute using the Estimator primitive
from qiskit.primitives import StatevectorEstimator
estimator = StatevectorEstimator()
job = estimator.run([(qc, operator)], precision=1e-3)
result = job.result()
print(f" > Expectation values: {result[0].data.evs}")

Running this will give the outcome 4. For fun, try to assign a value of +/- 1 to each single-qubit operator X and Y and see if you can achieve this outcome. (Spoiler alert: this is not possible!)

Using the Qiskit-provided qiskit.primitives.StatevectorSampler and qiskit.primitives.StatevectorEstimator will not take you very far. The power of quantum computing cannot be simulated on classical computers and you need to use real quantum hardware to scale to larger quantum circuits. However, running a quantum circuit on hardware requires rewriting to the basis gates and connectivity of the quantum hardware. The tool that does this is the transpiler, and Qiskit includes transpiler passes for synthesis, optimization, mapping, and scheduling. However, it also includes a default compiler, which works very well in most examples. The following code will map the example circuit to the basis_gates = ["cz", "sx", "rz"] and a linear chain of qubits $0 \rightarrow 1 \rightarrow 2$ with the coupling_map = [[0, 1], [1, 2]].

from qiskit import transpile
qc_transpiled = transpile(qc, basis_gates=["cz", "sx", "rz"], coupling_map=[[0, 1], [1, 2]], optimization_level=3)

Executing your code on real quantum hardware

Qiskit provides an abstraction layer that lets users run quantum circuits on hardware from any vendor that provides a compatible interface. The best way to use Qiskit is with a runtime environment that provides optimized implementations of Sampler and Estimator for a given hardware platform. This runtime may involve using pre- and post-processing, such as optimized transpiler passes with error suppression, error mitigation, and, eventually, error correction built in. A runtime implements qiskit.primitives.BaseSamplerV2 and qiskit.primitives.BaseEstimatorV2 interfaces. For example, some packages that provide implementations of a runtime primitive implementation are:

Qiskit also provides a lower-level abstract interface for describing quantum backends. This interface, located in qiskit.providers, defines an abstract BackendV2 class that providers can implement to represent their hardware or simulators to Qiskit. The backend class includes a common interface for executing circuits on the backends; however, in this interface each provider may perform different types of pre- and post-processing and return outcomes that are vendor-defined. Some examples of published provider packages that interface with 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, please take a look at our contribution guidelines. By participating, you are expected to uphold our code of conduct.

We use GitHub issues for tracking requests and bugs. Please join the Qiskit Slack community for discussion, comments, and questions. For questions related to running or using Qiskit, Stack Overflow has a qiskit. For questions on quantum computing with Qiskit, use the qiskit tag in the Quantum Computing Stack Exchange (please, read first the guidelines on how to ask in that forum).

Authors and Citation

Qiskit 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 1.2.0 release here:

https://github.com/Qiskit/qiskit/releases/tag/1.2.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. See all release notes here.

Acknowledgements

We acknowledge partial support for Qiskit development from the DOE Office of Science National Quantum Information Science Research Centers, Co-design Center for Quantum Advantage (C2QA) under contract number DE-SC0012704.

License

Apache License 2.0

    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

©Copyright 2023 CCF 开源发展委员会
Powered by Trustie& IntelliDE 京ICP备13000930号