Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support to CouplingMap for disjoint qubits #9710

Merged
merged 28 commits into from Mar 24, 2023

Conversation

mtreinish
Copy link
Member

Summary

Previously the CouplingMap class only supported graphs which were fully connected. This prevented us from modeling potential hardware which didn't have a path between all qubits. This isn't an inherent limitation of the underlying graph data structure but was a limitation put on the CouplingMap class because several pieces of the transpiler assume a path always exists between 2 qubits (mainly in layout and routing). This commit removes this limitation and also adds a method to get a subgraph CouplingMap for all the components of the CouplingMap. This enables us to model these devices with a CouplingMap, which is the first step towards supporting these devices in the transpiler.

One limitation with this PR is most fo the layout and routing algorithms do not support disjoint connectivity. The primary exception being TrivialLayout (although the output might be invalid) VF2Layout and VF2PostLayout which inherently support this already. This commit lays the groundwork to fix this limitation in a follow-up PR but for the time being it just raises an error in those passes if a disconnected CouplingMap is being used. The intent here is to follow up to this commit soon for adding support for SabreLayout, SabreSwap, DenseLayout, and StochasticSwap to leverage the method get_component_subgraphs added here to make them usable on such coupling maps.

Details and comments

Previously the CouplingMap class only supported graphs which were fully
connected. This prevented us from modeling potential hardware which
didn't have a path between all qubits. This isn't an inherent limitation
of the underlying graph data structure but was a limitation put on the
CouplingMap class because several pieces of the transpiler assume a path
always exists between 2 qubits (mainly in layout and routing). This
commit removes this limitation and also adds a method to get a subgraph
CouplingMap for all the components of the CouplingMap. This enables us
to model these devices with a CouplingMap, which is the first step
towards supporting these devices in the transpiler.

One limitation with this PR is most fo the layout and routing algorithms
do not support disjoint connectivity. The primary exception being
TrivialLayout (although the output might be invalid) VF2Layout and
VF2PostLayout which inherently support this already. This commit lays
the groundwork to fix this limitation in a follow-up PR but for the time
being it just raises an error in those passes if a disconnected
CouplingMap is being used. The intent here is to follow up to this commit
soon for adding support for SabreLayout, SabreSwap, DenseLayout,
and StochasticSwap to leverage the method get_component_subgraphs added
here to make them usable on such coupling maps.
@mtreinish mtreinish added Changelog: New Feature Include in the "Added" section of the changelog mod: transpiler Issues and PRs related to Transpiler labels Mar 2, 2023
@mtreinish mtreinish added this to the 0.24.0 milestone Mar 2, 2023
@mtreinish mtreinish requested a review from a team as a code owner March 2, 2023 19:23
@qiskit-bot
Copy link
Collaborator

Thank you for opening a new pull request.

Before your PR can be merged it will first need to pass continuous integration tests and be reviewed. Sometimes the review process can be slow, so please be patient.

While you're waiting, please feel free to review other open PRs. While only a subset of people are authorized to approve pull requests for merging, everyone is encouraged to review open pull requests. Doing reviews helps reduce the burden on the core team and helps make the project's code better for everyone.

One or more of the the following people are requested to review this:

  • @Qiskit/terra-core

@mtreinish mtreinish added this to To do in Transpiler via automation Mar 2, 2023
@mtreinish mtreinish moved this from To do to in progress in Transpiler Mar 2, 2023
@nonhermitian
Copy link
Contributor

I worry what these changes mean in the grander scheme of what is means to be a device with num_qubits. In this case CouplingMap.size() gives a single number, but that size no longer corresponds to what we would typically call the number of qubits. The change is completely fine for the case of abstract graphs, but in the context of a quantum computing device it is a bit tricky to deal with

@jakelishman
Copy link
Member

I'm not sure what you would instead prefer to call the qubit count? Something like Heron is (to me) explicitly a 399q device which is made of 3x 133q interconnected components, which this PR also adds a method to access as separate maps, so both 399 and (133, 133, 133) are things we have access to. That seems to satisfy both interpretations to me; you can see how big the device is at large, and how big any individual components are.

@mtreinish
Copy link
Member Author

mtreinish commented Mar 2, 2023

Well we know that we'll need to be able to model these devices at some point and in the context here CouplingMap.size() still accurately reflects that you have n qubits to use on the target backend, but it isn't a complete picture anymore once we support devices that aren't connected graphs, there isn't a way around that and there isn't anything precluding have an n qubit circuit as long as we don't required connectivity between more than CouplingMap.largest_connected_component() qubits in the circuit (it's a bit more nuanced than this in practice I think). If we do that should error in transpile() just like it does today if the circuit width is more than CouplingMap.size().

The way I was planning to handle this in the layout and routing passes is basically just do something like:

component_graphs = cmap.get_component_subgraphs()
if len(component_graphs) > 1:
    im_graph = build_interaction_graph(dag)
    im_graph_components = rx.weakly_connected_components(im_graph)
    if len(im_graph_components) > 1:
        for im_component in im_graph_components:
            subgraph = im_graph.subgraph(im_compoment)
            # figure out how to map circuit components on to subgraphs
            ...
            self.run_pass(subgraph, graph_components[selected_index])
    else:
        if all(component_graph.size() < len(im_graph) for component_graph in component_graphs):
            raise TranspilerError
        #   Maybe heuristically select which component to run on if there is different sizes or connectivity (VF2PostLayout will correct for error rates)
        self.run_pass(dag, component_graphs[0])
else:
    self.run_pass(dag, cmap)

@nonhermitian
Copy link
Contributor

Ok I guess it is semantics really at the end of the day. We are relaxing the criteria that the number of qubits in a device is equal to the width of an entangled circuit that I could run. E.g. as an extreme example, one could have a 1000Q system, but be able to only run 1Q gates.

qiskit/transpiler/coupling.py Outdated Show resolved Hide resolved
qiskit/transpiler/passes/layout/dense_layout.py Outdated Show resolved Hide resolved
Noise adaptive layout doesn't use a CouplingMap so we can't check for a
disconnected coupling map in it.
This commit renames the get_component_subgraphs() method to components()
which is much more consise name. At the same time this adds caching to
the return just in case building the component subgraphs is expensive to
compute we only need to ever do it once.
Copy link
Member

@jakelishman jakelishman left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor API break aside, I'm fine with this, but I'll leave it untagged for merge until @kdk and others in the core compiler team have had a chance to look.

qiskit/transpiler/coupling.py Outdated Show resolved Hide resolved
@coveralls
Copy link

coveralls commented Mar 2, 2023

Pull Request Test Coverage Report for Build 4492675907

  • 24 of 27 (88.89%) changed or added relevant lines in 5 files are covered.
  • 2 unchanged lines in 2 files lost coverage.
  • Overall coverage decreased (-0.02%) to 85.368%

Changes Missing Coverage Covered Lines Changed/Added Lines %
qiskit/transpiler/passes/layout/csp_layout.py 2 3 66.67%
qiskit/transpiler/passes/layout/sabre_layout.py 1 2 50.0%
qiskit/transpiler/passes/layout/trivial_layout.py 1 2 50.0%
Files with Coverage Reduction New Missed Lines %
qiskit/transpiler/passes/layout/dense_layout.py 1 96.97%
qiskit/transpiler/passes/synthesis/unitary_synthesis.py 1 94.64%
Totals Coverage Status
Change from base Build 4492553856: -0.02%
Covered Lines: 67887
Relevant Lines: 79523

💛 - Coveralls

In a previous commit the distance() method was updated to handle
disjoint graphs correctly. Prior to this PR it was expected to raise
when a path didn't exist between 2 qubits by nature of the distance
matrix construction failing if there was a disconnected coupling map.
Since that isn't the case after this PR the error condition was
changed to check explicitly that there is no path available and then
error. However, there was an issue in this case and self loops would
incorrectly error as well when instead they should return 0. This commit
updates the error check to ignore self loops so they return correctly.
@mtreinish mtreinish requested a review from kdk March 3, 2023 14:46
jakelishman
jakelishman previously approved these changes Mar 3, 2023
Copy link
Member

@jakelishman jakelishman left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm happy to merge, just waiting for further reviewer from core compiler team.

Copy link
Member

@kdk kdk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good so far, a few questions below.

qiskit/transpiler/coupling.py Show resolved Hide resolved
qiskit/transpiler/coupling.py Outdated Show resolved Hide resolved
test/python/transpiler/test_coupling.py Outdated Show resolved Hide resolved
test/python/transpiler/test_coupling.py Show resolved Hide resolved
qiskit/transpiler/coupling.py Outdated Show resolved Hide resolved
qiskit/transpiler/coupling.py Outdated Show resolved Hide resolved

cmap = CouplingMap([[0, 1], [1, 2], [2, 0], [3, 4], [4, 5], [5, 3]])
component_cmaps = cmap.get_component_subgraphs()
print(component_cmaps[1].graph[0])
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think I understand the goal here, but I'm not sure this is the most intuitive way to give users a mapping from the indices in the returned subgraphs to their indicies in the original CouplingMap. That is, the attribute data in CouplingMap.graph nodes is usually None, and with this change would mostly remain None except in the cases where .components() is called.

I would think this would be frequently needed (e.g. to get qubit properties from the Target on any qubits in a partition, and when re-combining subgraphs back into a whole-device circuit). Would returning a mapping dict from new to old indicies (like is done in DAGCircuit.substitute_node_with_dag https://github.com/Qiskit/qiskit-terra/blob/255337662847f9f22982172c186ff98426a6b626/qiskit/dagcircuit/dagcircuit.py#L1181 ) be easier do use?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alternately, it seems like we're going through a lot of effort (and users will have to have some extra handling code) to workaround the issue that CouplingMap has to be indexed at zero, and can't have holes. Is now the right time to revisit that (maybe by always using the node attribute data to store the physical qubit index)? This would require a different breaking change to users of CouplingMap.graph, but might be easier to manage in the long term.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually the data payload for nodes in CouplingMap.graph is not always None it depends on how the CoupingMap was created. If you use the add_physical_qubit() api (also implicitly via add_edge()) it sets the node's payload to the index of the qubit. I thought about using a mapping dict, but it's not as straightforward as what we do in DAGCircuit because we have multiple graphs to work with. It'd basically have to be something like:

{
    0: (0, 0),
    1: (1, 0),
    2: (0, 1),
}

or a list of mappings:

[
    {
        0: 0,
        2: 1,
    },
    {
       1: 0,
    },
]

to indicate which subgraph index this node moved to and what it's corresponding index is in that subgraph. When thinking about how this mapping would be used I thought it would just be easier to have the node tell us what it was originally than having to do the double lookup.

What I'm actually protecting against here is not that everything has to be zero indexed and contiguous in the CouplingMap, but it's that we can't easily preserve indices across new graph object creation. If we wanted to do that I'd need a lot of logic to basically reconstruct the holes exactly to reuse the indices across all the subgraphs which is complex and error prone (but possible) and also a lot slower. It was much easier to just do the mapping once in the outer scope and let rustworkx just give us whatever indices make sense.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually the data payload for nodes in CouplingMap.graph is not always None it depends on how the CoupingMap was created. If you use the add_physical_qubit() api (also implicitly via add_edge()) it sets the node's payload to the index of the qubit.

Maybe this is a bug in and of itself. I tried CouplingMap.from_* and CouplingMap(edge_list) neither of which generated indices on the graph nodes.

Agree that having the data on the nodes is preferable to a mapping dict, but I think really only if can be applied consistently. Otherwise, we risk ending up in a state where node data can be any of {always None, the physical qubit index on an originating CouplingMap, the physical qubit index on this CouplingMap} depending on how the CouplingMap was created.

As an alternative, would a move from having the node index to the node data be the source of truth for the physical qubit index be an option? Looking through CouplingMap quickly, I don't immediately see anything that would make this impossible (though I'm sure I'm missing pieces, and there are performance concerns that would have to be evaluated). This wouldn't I think be a change in existing behavior since for connected CouplingMaps, these would always be the same.

If that's not possible, I think returning a list of dicts that is already zipped with or is zip-able with the list of component graphs would also seem reasonable.

Copy link
Member Author

@mtreinish mtreinish Mar 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I actually did a bit of a check and another place where it's not None currently is in the output from Target.build_coupling_map() (https://github.com/Qiskit/qiskit-terra/blob/main/qiskit/transpiler/target.py#L839-L863 ). I can't remember why I did that, I assume I was thinking having the gates and error properties on the CouplingMap's graph might be useful, especially for calculating shortest paths over error rates efficiently, so you could do something like rx.dijkstra_shortest_paths(cmap.graph, 0, 2, weight_fn=lambda props: sum(x.error for x in props.values())). But nothing is really using it at least internally. So, I think we can safely say the node (and edge) payloads use is undefined at this point since we have 3 different use cases in tree depending on how it's created.

At the high level (which is wider scope than this PR) I think there are 2 ways to move forward here we can say the contents of these payloads on CouplingMap.graph continued to be undefined and their use is application specific and just document that explicitly at the class level. The other is to explicitly say that the node and edge payload is the canonical index for the node or edge on the backend. In general this will always be the rustworkx graph's index (e.g cmap.graph[3] == 3), the exception being those generated from this method which is doing this mapping. I'd really like to avoid as general practice having graph index != qubit index as I expect that will lead to more bugs unless you're explicitly handling it.

In general we'll want to use the index on the graph instead of the canonical index, we should only be relying on the node payload for mapping purposes like what is done here. The reason is if we're using the inner graph with any rustworkx functions (including distance_matrix()) the indices used are based on the graph index. I view this use as more of an edge case than something that will be used more generally outside of this. I'm not super worried about someone accidentally using the CouplingMaps output from this method and accidentally using index 0 as qubit 0 where it's really like qubit 2 globally because we're pretty explicit here in the docstring. The use case I had in mind for this is wrapping the run() method for layout and routing passes to basically split the circuit and coupling maps before and then run the pass for each subgraph and remap the output from the subgraph index to the global index.

That all being said if you would prefer this to be zippable list returns I can work with that, it's just a little extra mapping in the next PR to do it in with a dict instead of via the mapping interface the graph already gives us. The performance will likely be indistinguishable.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That all being said if you would prefer this to be zippable list returns I can work with that, it's just a little extra mapping in the next PR to do it in with a dict instead of via the mapping interface the graph already gives us. The performance will likely be indistinguishable.

I'm good to go ahead with this. I think the discussion around what should live on the nodes of coupling_map.graph and how we handle non-zero-indexed CouplingMaps and holes is an important one, but let's discuss that in a separate issue.

qiskit/transpiler/passes/layout/csp_layout.py Show resolved Hide resolved
Co-authored-by: Kevin Krsulich <kevin@krsulich.net>
@mtreinish
Copy link
Member Author

Is this a fix for #2314 ?

It will in the sense that you can have separate disjoint sections in a coupling map now. But the CouplingMap object still has the same constraints that all the qubit indices are contiguous starting at 0. That constraint hasn't changed (and it realistically isn't something we could given how the CouplingMap gets used elsewhere).

@mtreinish
Copy link
Member Author

I pushed up #9802 based on top of this PR branch to add the second half of using SabreLayout with a disjoint coupling map, if people are interested in seeing how this is used in practice inside the transpiler.

The current reduce() error behavior of raising on trying to reduce to a
disconnected coupling map is being depended on in other locations. To
avoid a potentially breaking change this commit reverts the removal of
that limitation in the method. We can look at doing that in the future
independently of this PR because removing this specific restriction on
the reduce() method is not 100% tied to generally allowing disconnected
coupling map objects.
Copy link
Member

@kdk kdk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks for the updates.

@kdk kdk added this pull request to the merge queue Mar 24, 2023
Merged via the queue into Qiskit:main with commit a1a67a1 Mar 24, 2023
14 checks passed
Transpiler automation moved this from in progress to done Mar 24, 2023
@mtreinish mtreinish deleted the disjoint-coupling-map branch March 24, 2023 21:59
@nkanazawa1989
Copy link
Contributor

@nkanazawa1989
Copy link
Contributor

nkanazawa1989 commented Mar 27, 2023

Ah okey I found it's written in a3cf7ff. It would be great if you could add some option to disable this check, e.g. in QE we (may) want to have reduced coupling map for experiment qubits, which might be disconnected.

adjs added a commit to comp-quantica/qiskit-terra that referenced this pull request Mar 29, 2023
commit 43a9dce
Author: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com>
Date:   Tue Mar 28 15:27:07 2023 -0600

    Apply new deprecation decorators to algorithms folder (Qiskit#9864)

    * Apply new deprecation decorators to algorithms folder

    * Fix docstring starting on first line

    * Fix test due to positional args not triggering warning

    * Improve test further

commit 67eaa4b
Author: a-matsuo <47442626+a-matsuo@users.noreply.github.com>
Date:   Wed Mar 29 04:50:41 2023 +0900

    Rearrange the gradient result based on the order of the input parameters (Qiskit#9503)

    * finite diff and spsa estimator gradient

    * for param shift, lin_comb, and reverse gradients

    * reverse estimator gradient

    * implemented the new feature

    * fix lint

    * fix test

    * fix and add reno

    * fix

    * fix style

commit 7e09125
Author: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com>
Date:   Tue Mar 28 08:33:08 2023 -0600

    Add `@deprecate_func` and `@deprecate_arg` decorators (Qiskit#9676)

    * Add `@deprecate_func` and `@deprecate_arg` decorators

    * Update the release note

    * Apply suggestions from code review

    Co-authored-by: Luciano Bello <bel@zurich.ibm.com>

    * lint

    * Use PyPI package_name rather than loose English

    ---------

    Co-authored-by: Luciano Bello <bel@zurich.ibm.com>

commit 90b2439
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Mar 28 07:44:45 2023 -0400

    Bump indexmap from 1.9.2 to 1.9.3 (Qiskit#9858)

    Bumps [indexmap](https://github.com/bluss/indexmap) from 1.9.2 to 1.9.3.
    - [Release notes](https://github.com/bluss/indexmap/releases)
    - [Changelog](https://github.com/bluss/indexmap/blob/master/RELEASES.md)
    - [Commits](indexmap-rs/indexmap@1.9.2...1.9.3)

    ---
    updated-dependencies:
    - dependency-name: indexmap
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit be8eeff
Author: Evgenii Zheltonozhskii <zheltonozhskiy@gmail.com>
Date:   Tue Mar 28 12:59:41 2023 +0300

    Fix mypy errors (circuit) (Qiskit#8267)

    * Fix circuit mypy errors

    * Fix 2

    * Remove ignores

    * Remove ignores for sure

    * Remove TODO

    * fix for docs

    * Add annotation

    * Fix control bug, remove unnecessary annotation

    * Add test and fix description

    * Fix test

    * Reformat

    * Fix test description

    * Update releasenotes/notes/fix-control-with-string-parameter-4eb8a308170e08db.yaml

    Co-authored-by: Julien Gacon <gaconju@gmail.com>

    * More minor fixes

    * Fix callable import

    * Fix Instruction import for sphinx

    * Replace list[Any] with list

    ---------

    Co-authored-by: Julien Gacon <gaconju@gmail.com>

commit 3118683
Author: Elena Peña Tapia <57907331+ElePT@users.noreply.github.com>
Date:   Tue Mar 28 11:51:20 2023 +0200

    Fix examples (Qiskit#9860)

commit a36416b
Author: Elena Peña Tapia <57907331+ElePT@users.noreply.github.com>
Date:   Tue Mar 28 10:27:43 2023 +0200

    Remove factorizers and linear solvers from `algorithms` (Qiskit#9832)

    * Remove factorizers and linear solvers

    * Add reno

    * Remove shor from backend tests

    * Fix reno

    * Apply suggestions from code review

    Co-authored-by: Steve Wood <40241007+woodsp-ibm@users.noreply.github.com>

    * Apply review reno

    ---------

    Co-authored-by: Steve Wood <40241007+woodsp-ibm@users.noreply.github.com>

commit aacbc66
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Mar 27 19:13:15 2023 +0000

    Bump pyo3 from 0.18.1 to 0.18.2 (Qiskit#9854)

    Bumps [pyo3](https://github.com/pyo3/pyo3) from 0.18.1 to 0.18.2.
    - [Release notes](https://github.com/pyo3/pyo3/releases)
    - [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
    - [Commits](PyO3/pyo3@v0.18.1...v0.18.2)

    ---
    updated-dependencies:
    - dependency-name: pyo3
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit abfb53e
Author: Jake Lishman <jake.lishman@ibm.com>
Date:   Mon Mar 27 15:06:28 2023 +0100

    Ensure up-to-date `pip`, `setuptools` and `wheel` in CI (Qiskit#9850)

    Up-to-date Python packages should not require this step, however there
    are several packages, especially those that are optional for Terra
    functionality, that do not yet contain `pyproject.toml` files when
    building them from source.  In these cases, `pip` will begin erroring
    out from version 23.1 if `wheel` is not installed.

    This commit proactively ensures that the minimum build dependencies for
    legacy Python packages is prepared and up-to-date before attempting
    installations; this includes ensuring that these are updated _inside_
    any created venvs as well as outside them.

commit 03473bd
Author: Elena Peña Tapia <57907331+ElePT@users.noreply.github.com>
Date:   Mon Mar 27 12:23:12 2023 +0200

    pin symengine to `<0.10.0` (Qiskit#9857)

    * pin symengine

    * Avoid specific version

commit a1a67a1
Author: Matthew Treinish <mtreinish@kortar.org>
Date:   Fri Mar 24 14:34:53 2023 -0400

    Add support to CouplingMap for disjoint qubits (Qiskit#9710)

    * Add support to CouplingMap for disjoint qubits

    Previously the CouplingMap class only supported graphs which were fully
    connected. This prevented us from modeling potential hardware which
    didn't have a path between all qubits. This isn't an inherent limitation
    of the underlying graph data structure but was a limitation put on the
    CouplingMap class because several pieces of the transpiler assume a path
    always exists between 2 qubits (mainly in layout and routing). This
    commit removes this limitation and also adds a method to get a subgraph
    CouplingMap for all the components of the CouplingMap. This enables us
    to model these devices with a CouplingMap, which is the first step
    towards supporting these devices in the transpiler.

    One limitation with this PR is most fo the layout and routing algorithms
    do not support disjoint connectivity. The primary exception being
    TrivialLayout (although the output might be invalid) VF2Layout and
    VF2PostLayout which inherently support this already. This commit lays
    the groundwork to fix this limitation in a follow-up PR but for the time
    being it just raises an error in those passes if a disconnected
    CouplingMap is being used. The intent here is to follow up to this commit
    soon for adding support for SabreLayout, SabreSwap, DenseLayout,
    and StochasticSwap to leverage the method get_component_subgraphs added
    here to make them usable on such coupling maps.

    * Remove coupling map connected check from NoiseAdaptiveLayout

    Noise adaptive layout doesn't use a CouplingMap so we can't check for a
    disconnected coupling map in it.

    * Change DenseLayout guard to only prevent running when it won't work

    * Rename get_component_subgraphs to components and cache result

    This commit renames the get_component_subgraphs() method to components()
    which is much more consise name. At the same time this adds caching to
    the return just in case building the component subgraphs is expensive to
    compute we only need to ever do it once.

    * Drop caching of connected components

    * Fix check for dense layout to do a valid comparison

    * Ensure self loops in CouplingMap.distance() return 0

    In a previous commit the distance() method was updated to handle
    disjoint graphs correctly. Prior to this PR it was expected to raise
    when a path didn't exist between 2 qubits by nature of the distance
    matrix construction failing if there was a disconnected coupling map.
    Since that isn't the case after this PR the error condition was
    changed to check explicitly that there is no path available and then
    error. However, there was an issue in this case and self loops would
    incorrectly error as well when instead they should return 0. This commit
    updates the error check to ignore self loops so they return correctly.

    * Fix lint

    * Update CouplingMap.components() docstring

    Co-authored-by: Kevin Krsulich <kevin@krsulich.net>

    * Expand test coverage

    * Remove unused option for strongly connected components

    * Expand docstring to explain return list order

    * Use infinity for disconnected nodes in distance matrix

    * Update releasenotes/notes/add-cmap-componets-7ed56cdf294150f1.yaml

    * Rename CouplingMap.components to connected_components()

    THis commit renames the CouplingMap.components() method to
    connected_components(). It also adds an example to the docstring to
    better explain what a connected component is.

    * Fix typo in relaese note

    * Update method name in release note

    * Restore previous reduce() behavior

    The current reduce() error behavior of raising on trying to reduce to a
    disconnected coupling map is being depended on in other locations. To
    avoid a potentially breaking change this commit reverts the removal of
    that limitation in the method. We can look at doing that in the future
    independently of this PR because removing this specific restriction on
    the reduce() method is not 100% tied to generally allowing disconnected
    coupling map objects.

    * Add missing import

    ---------

    Co-authored-by: Kevin Krsulich <kevin@krsulich.net>

commit 0bd4cfd
Author: Matthew Treinish <mtreinish@kortar.org>
Date:   Fri Mar 24 10:48:21 2023 -0400

    Add option to skip deepcopy on dag_to_circuit (Qiskit#9825)

    * Add option to skip deepcopy on dag_to_circuit

    This commit adds a new option, copy_operations, which allows to disable
    the deepcopy on dag_to_circuit(). Previously the dag to circuit
    converter would always deep copy the operations, however in the
    transpiler we don't need this extra overhead because the DAGCircuits are
    temporary internal artifacts and will not be resused outside of the
    transpiler. So we can avoid the copy overhead in these situations,
    however in general the converter needs to default to copying. This
    new argument enables this workflow by keeping the current behavior by
    default but enabling the transpiler to skip copying operations in the
    output conversion.

    * Fix docs typo

    * Fix docs typo again

    * Use copy_operations=False in more locations

commit dfcfa4a
Author: Jake Lishman <jake.lishman@ibm.com>
Date:   Fri Mar 24 13:16:58 2023 +0000

    Remove dependency on sphinx-autodoc-typehints (Qiskit#9705)

    * Remove dependency on sphinx-autodoc-typehints

    This replaces the whole usage of the separate package
    `sphinx-autodoc-typehints` with the built-in support from `autodoc`,
    available (with this combination of options) since Sphinx 5.0.  This
    removes a docs dependency that has caused us significant problems before
    due to its instability, and the built-in handling in `autodoc` is much
    cleaner as well; rather than trying to textually modify the docstring,
    this version (correctly) mutates the parsed rST structure, which also
    naturally it 100% compatible with the Napoleon processing.

    * Maintain previous type-hint behaviour

commit 4a63b17
Author: Jake Lishman <jake.lishman@ibm.com>
Date:   Fri Mar 24 13:14:07 2023 +0000

    Move OQ3 exporter tests to qasm3 module (Qiskit#9844)

    * Move OQ3 exporter tests to qasm3 module

    These previously lived in `test/python/circuit` just for historical
    reasons (the OQ2 exporter lives there because it's a method on
    `QuantumCircuit`).  Since we have a dedicated `qasm3` module now,
    including in the test suite, it makes sense to move the file there.

    * Add missing __init__.py

commit 9c8eb06
Author: Julien Gacon <gaconju@gmail.com>
Date:   Fri Mar 24 08:46:38 2023 +0100

    Improve ``Parameter`` handling in ``SparsePauliOp`` (Qiskit#9796)

    * add reno

    * Add assign_parameters and parameter in init

    * add SPO.parameters and remove utils

    * fix ParameterValueType typehint

    * Update qiskit/quantum_info/operators/symplectic/sparse_pauli_op.py

    Co-authored-by: Ikko Hamamura <ikkoham@users.noreply.github.com>

    * remove trailing print

    * Elena's comments

    Co-authored-by: Elena Peña Tapia <57907331+ElePT@users.noreply.github.com>

    * fix line length

    ---------

    Co-authored-by: Ikko Hamamura <ikkoham@users.noreply.github.com>
    Co-authored-by: Elena Peña Tapia <57907331+ElePT@users.noreply.github.com>

commit 7bb4af9
Author: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com>
Date:   Thu Mar 23 09:24:43 2023 -0600

    Remove tweedledum from requirements-dev.txt (Qiskit#9759)

commit 5a19f8a
Author: Jake Lishman <jake.lishman@ibm.com>
Date:   Thu Mar 23 13:57:23 2023 +0000

    Fix missing handling of no-synthesis case in `UnitarySynthesis` (Qiskit#9843)

    Since moving `Optimize1qDecomposition` down to the Rust level, some of
    its use in the default `UnitarySynthesis` plugin was allowing `None` to
    be passed to an internal function unchecked.  This correctly returns the
    "could not synthesise" value when appropriate.

commit 84a0fdd
Author: Takashi Imamichi <31178928+t-imamichi@users.noreply.github.com>
Date:   Thu Mar 23 10:37:34 2023 +0900

    Performance improvement of `SparsePauliOp.to_matrix` (Qiskit#9620)

    * optimize SparsePauliOp.to_matrix

    * optimize dense

    * proper vectorize

    * update copyright year

    * small opt

    * update a comment

commit 262cf08
Author: Jake Lishman <jake.lishman@ibm.com>
Date:   Wed Mar 22 16:11:35 2023 +0000

    Revert "Start deprecation of complex parameters in Qiskit Pulse (Qiskit#9735)" (Qiskit#9838)

    This reverts commit eb4c5cb.

    This is currently causing flaky CI on Windows, so is being temporarily
    reverted while a fix can be made.

commit 789d588
Author: Steve Wood <40241007+woodsp-ibm@users.noreply.github.com>
Date:   Wed Mar 22 09:28:19 2023 -0400

    Update codeowners (Qiskit#9835)

commit eb4c5cb
Author: TsafrirA <113579969+TsafrirA@users.noreply.github.com>
Date:   Tue Mar 21 03:10:59 2023 +0200

    Start deprecation of complex parameters in Qiskit Pulse (Qiskit#9735)

    * Add warning and update tests

    * Release notes

    * Move warning to all Pulse objects.

    * Fix releasenote typo

    * Move warning to format_parameter_value

commit 6cec912
Author: Matthew Treinish <mtreinish@kortar.org>
Date:   Mon Mar 20 13:26:41 2023 -0400

    Fix non-complex dtypes in OneQubitEulerDecomposer methods (Qiskit#9828)

    * Fix non-complex dtypes in OneQubitEulerDecomposer methods

    This commit fixes a regression introduced in the rewrite of the
    internals of the OneQubitEulerDecomposer class to be in rust. Previously
    the angles() and angles_and_phase() methods of OneQubitEulerDecomposer
    would work with a non-complex dtype in the input, however because the
    rust component of the module is strictly typed to only work with a
    complex128 dtype passing the array to rust to compute the angles and
    phase of the unitary would fail. To address this limitation this commit
    casts the input matrix to be complex before passing it to the rust
    function.

    Fixes Qiskit#9827

    * Cleanup release note

    * Update test/python/quantum_info/test_synthesis.py

    Co-authored-by: Jake Lishman <jake@binhbar.com>

    ---------

    Co-authored-by: Jake Lishman <jake@binhbar.com>

commit 9500f42
Author: Etienne Wodey <44871469+airwoodix@users.noreply.github.com>
Date:   Mon Mar 20 15:30:55 2023 +0100

    transpile: narrow the return type depending on the circuits argument (Qiskit#9799)

    * transpile: narrow the return type depending on the circuits argument

    * Fixup release note

    ---------

    Co-authored-by: Jake Lishman <jake.lishman@ibm.com>

commit 8ceb57d
Author: Takashi Imamichi <31178928+t-imamichi@users.noreply.github.com>
Date:   Mon Mar 20 22:38:07 2023 +0900

    fix qasm with reset (Qiskit#9819)

commit e2f6606
Author: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com>
Date:   Fri Mar 17 11:36:27 2023 -0600

    Consolidate `pip install` calls in CI (Qiskit#9757)

    * Remove unnecessary `pip install` in CI

    * Consolidate `pip install` calls in CI

    * Add back `-U`

    * Go back to editable install so Rust is in debug mode

    * Add RUST_DEBUG env var so we can avoid editable install

    * Remove SETUPTOOLS_ENABLE_FEATURES and also Aer from lint job

    * See if editable install fixes Pylint

    * Give up on not using editable installs in CI

    I don't know why they're causing issues with loading the Rust extension. But it's not a priority
    to figure that out. This PR is still some forward progress.

commit 2afcebc
Author: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com>
Date:   Fri Mar 17 11:34:25 2023 -0600

    Fix Tox installing Terra from PyPI (Qiskit#9758)

    * Fix Tox installing Terra from PyPI

    * Don't use editable mode

commit b00a8de
Author: Matthew Treinish <mtreinish@kortar.org>
Date:   Thu Mar 16 18:32:14 2023 -0400

    Stop using mergify merge queue feature (Qiskit#9807)

    Due to recent changes in the mergify configuration/service the merge
    queue feature of mergify is no longer working as expected. It's not
    clear if this just a temporary bug in mergify, a longer term change in
    behavior (which requires all PR authors to be registered on mergify), or
    some incompatibility between the github api and mergify. However,
    because we're no longer able to rely on it we've moved to using github's
    native merge queue feature [1][2] instead. Since this new merge queue
    would conflict with mergify's this commit removes the merge queue
    configuration from the mergify configuration. The configuration for
    stable backporting is left in place because github doesn't natively
    offer that feature and it appears to still work fine.

    [1] https://github.blog/changelog/2023-02-08-pull-request-merge-queue-public-beta/
    [2] https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-a-merge-queue

commit 07ca200
Author: Julien Gacon <gaconju@gmail.com>
Date:   Thu Mar 16 20:20:04 2023 +0100

    Clip probabilities in ``QuantumState`` (Qiskit#9762)

    * Clip probabilities

    * clip implictly

    * add reno

    * add tests

    * add renormalization

    * use sum, not norm

    * ensure round still works

    * normalizing seems to re-introduce errors

    * Tighten floating-point tests

    In cases of rounding and clipping, it's important that the
    floating-point output is bit-for-bit correct, so the fuzzy tests weren't
    ideal (some of these were strict, but it was inconsistent).  It's better
    to use `assertEqual` rather than `assertTrue` where possible so we get
    better errors on failure.

    ---------

    Co-authored-by: Jake Lishman <jake.lishman@ibm.com>

commit 5a9d041
Author: Jake Lishman <jake.lishman@ibm.com>
Date:   Thu Mar 16 18:50:07 2023 +0000

    Remove useless `into_iter()` on `Range` (Qiskit#9806)

    Clippy has started complaining about this on the stable branch, and it's
    probably correct to do so.

commit bbd023b
Author: Matthew Treinish <mtreinish@kortar.org>
Date:   Thu Mar 16 14:44:44 2023 -0400

    Leverage Rust circuit sequence construction for `OneQubitEulerDecomposer` (Qiskit#9583)

    * Leverage Rust circuit sequence construction for OneQubitEulerDecomposer

    This commit is a follow-up to Qiskit#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 Qiskit#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

commit 0d15506
Author: sg495 <sg495@users.noreply.github.com>
Date:   Thu Mar 16 18:40:33 2023 +0000

    new parameters in `plot_bloch_multivector`: `figsize`, `font_size`, and `title_font_size`  (Qiskit#7264)

    * Update state_visualization.py

    Closes Qiskit#7263

    * Introduced font size, title font size and title padding to plot_bloch_multivector

    * Update state_visualization.py

    Documented new kwargs.

    * Fixed code formatting issues in previous commits of Qiskit#7264.

    * Update qiskit/visualization/bloch.py

    Co-authored-by: Luciano Bello <bel@zurich.ibm.com>

    * Update qiskit/visualization/bloch.py

    Co-authored-by: Luciano Bello <bel@zurich.ibm.com>

    * Update qiskit/visualization/state_visualization.py

    Co-authored-by: Luciano Bello <bel@zurich.ibm.com>

    * Update qiskit/visualization/state_visualization.py

    Co-authored-by: Luciano Bello <bel@zurich.ibm.com>

    * Create update-state-visualization-6836bd53e3a24891.yaml

    Added release notes.

    * Update test_graph_matplotlib_drawer.py

    Included a test for the new features.

    * fix test

    * blacking

    ---------

    Co-authored-by: Luciano Bello <bel@zurich.ibm.com>

commit a85456d
Author: Jim Garrison <jim@garrison.cc>
Date:   Thu Mar 16 14:40:16 2023 -0400

    Remove shared `black`/`lint/`lint-incr` `envdir` in `tox.ini` (Qiskit#9800)

    Under tox3, it was faster to have the `black`, `lint`, and `lint-incr`
    environments share an `envdir`.  However, tox4 recreates the environment
    every time one switches from one to another when they share an `envdir`,
    leading to much slower execution.  Here I've changed these environments
    to all use the default (unique) directory rather than a shared one.

    Closes Qiskit#9782

commit b047a7c
Author: Matthew Treinish <mtreinish@kortar.org>
Date:   Thu Mar 16 17:29:12 2023 -0400

    Attempt to trigger Azure pipelines on merge queue events (Qiskit#9809)

    * Attempt to trigger Azure pipelines on merge queue events

    This commit attempts to add a trigger condition to our azure pipelines
    job to trigger on commits to the gh merge queue branch.

    * Only trigger PR CI in queue, not push CI

    ---------

    Co-authored-by: Jake Lishman <jake.lishman@ibm.com>

commit b4bc559
Author: Luciano Bello <bel@zurich.ibm.com>
Date:   Thu Mar 16 15:56:55 2023 +0100

    Some doc formatting and link, mostly on quantumcircuit.py file (Qiskit#9771)

    * some doc formating and link, mostly on quantumcircuit.py file

    * Update qiskit/circuit/quantumcircuit.py

    Co-authored-by: Julien Gacon <gaconju@gmail.com>

    * ident

    * more typos

    * more typos

    * another iteration

    * Bit and Register

    * notes on Register and Bit

    * Update qiskit/circuit/bit.py

    Co-authored-by: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com>

    * Update qiskit/circuit/register.py

    Co-authored-by: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com>

    ---------

    Co-authored-by: Julien Gacon <gaconju@gmail.com>
    Co-authored-by: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com>
    Co-authored-by: Jake Lishman <jake.lishman@ibm.com>

commit c37cec2
Author: Jim Garrison <jim@garrison.cc>
Date:   Thu Mar 16 00:26:01 2023 -0400

    Remove implicit broadcasting from `Pauli`/label construction of `PauliList` (Qiskit#9779)

    * Remove implicit broadcasting from `Pauli`/label construction of `PauliList`

    * Update releasenotes/notes/paulilist-do-not-broadcast-from-paulis-96de3832fba21b94.yaml

    Co-authored-by: Jake Lishman <jake@binhbar.com>

    ---------

    Co-authored-by: Jake Lishman <jake@binhbar.com>
    Co-authored-by: Jake Lishman <jake.lishman@ibm.com>

commit b0b5541
Author: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com>
Date:   Wed Mar 15 14:09:13 2023 -0600

    `@deprecate_arguments` and `@deprecate_function` add deprecation to docstring (Qiskit#9790)

commit fa4a136
Author: Alexander Ivrii <alexi@il.ibm.com>
Date:   Wed Mar 15 00:21:35 2023 +0200

    Alternative construction mechanism for HLS config (Qiskit#9413)

    * Alternative construction mechanism for HLS config

    * improved how synthesis methods can be specified

    * fixes

    * pass over release notes

    * adding tests for short form

    * Updating the documentation of HLSConfig and HighLevelSynthesis

    * removing unnecessary import in documentation

    ---------

    Co-authored-by: Luciano Bello <bel@zurich.ibm.com>

commit 6bb4957
Author: Luciano Bello <bel@zurich.ibm.com>
Date:   Tue Mar 14 21:41:02 2023 +0100

    extend the documentation for qiskit.circuit.QuantumCircuit.measure (Qiskit#9698)

    * extend the documentation for qiskit.circuit.QuantumCircuit.measure

    * spelling

    * H

    * qregs and cregs

    * spelling

    * Update qiskit/circuit/quantumcircuit.py

    * Update qiskit/circuit/quantumcircuit.py

    * Update qiskit/circuit/quantumcircuit.py

    * Update qiskit/circuit/quantumcircuit.py

    * examples after Args/Return/Raises

    * Update qiskit/circuit/quantumcircuit.py

    Co-authored-by: Jake Lishman <jake@binhbar.com>

    * short description

    * better description

    * as equivalence

    * shorten it a bit

    * ::

    * raw string

    * lvert

    * Tweak grammar

    ---------

    Co-authored-by: Junye Huang <h.jun.ye@gmail.com>
    Co-authored-by: Jake Lishman <jake@binhbar.com>

commit bf3bb96
Author: Matthew Treinish <mtreinish@kortar.org>
Date:   Tue Mar 14 10:18:45 2023 -0400

    Fix basis_gates and coupling_map backend override in transpile() (Qiskit#9789)

    This commit fixes an issue in the transpile() function when a user
    specified the `backend` argument with a BackendV2 based backend along
    with `basis_gates` or `coupling_map`. In this case the `transpile()` was
    generating the preset pass manager with a target, coupling map, and
    basis gates list. However, most individual passes that take basis gates
    and a Target will prefer to use the target if both are specified. This
    is generally sane behavior at the pass level because the target contains
    more rich data and tighter constraints that a transpiler pass will need
    to worry about. To fix this limitation this commit updates transpile()
    to not use the backend's target if either basis_gates or coupling_map
    are specified.

    Longer term this should no longer be an issue when Qiskit#9256 is implemented
    and we'll be relying solely on a target internally. But this fix is
    needed until Qiskit#9256 is started.

    Fixes Qiskit#9781

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 648da26
Author: Jake Lishman <jake.lishman@ibm.com>
Date:   Tue Mar 14 13:25:52 2023 +0000

    Improve error messages in `Target`-based `GateDirection` pass (Qiskit#9787)

    * Improve error messages in `Target`-based `GateDirection` pass

    The `Target` version of `GateDirection` has more information available
    to make better error messages. It can distinguish cases where the
    failure is because a gate would be valid if flipped but the pass doesn't
    know how to do it, and the case where the gate wouldn't be valid in
    either direction.

    * Reword error message on failed flip

    ---------

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 3005806
Author: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com>
Date:   Mon Mar 13 13:30:26 2023 -0600

    Add `add_deprecation_to_docstring` for docsite deprecation support (Qiskit#9685)

    * Add deprecations to function docstring

    * Work around issue with multiline strings

    * Better variable name

    * Jake's review feedback

    * Make Napoleon check case-insensitive

    * Promote add_deprecation_to_docstring to be public

    It may be useful for Applications/Ecosystem, when they want this functionality but want to keep using their own deprecation decorators

    * Properly error when metadata line is the first line

    * Tests feedback: don't use helper function and simplify instructions to generate tests

    * Don't use the function with @deprecate_function and @deprecate_arguments yet

    This makes the PR a smaller diff, so easier to review and also less risk when we land that it breaks something. Now, this PR only adds new functionality, the public `add_deprecation_to_docstring` function

    * Update qiskit/utils/deprecation.py

    Co-authored-by: Luciano Bello <bel@zurich.ibm.com>

    * Update qiskit/utils/deprecation.py

    Co-authored-by: Luciano Bello <bel@zurich.ibm.com>

    * Add release note

    ---------

    Co-authored-by: Luciano Bello <bel@zurich.ibm.com>

commit c2affb1
Author: Jake Lishman <jake.lishman@ibm.com>
Date:   Mon Mar 13 16:38:36 2023 +0000

    Fix explicitly calibrated gates in `GateDirection` (Qiskit#9786)

    If there is an explicit calibration given, this overrides the generic
    information from the `CouplingMap` or the `Target` for that particular
    instance, since one can use pulse-level control to define gates on a
    circuit-by-circuit basis that are not generically available in a way
    that can be specified in the coupling or target.

commit 2ce129a
Author: Naoki Kanazawa <nkanazawa1989@gmail.com>
Date:   Mon Mar 13 22:08:35 2023 +0900

    Fix unitary synthesis module to get proper error value when it's empty. (Qiskit#9774)

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 6829bb1
Author: Kazuki Tsuoka <kazukitsuoka@g.ecc.u-tokyo.ac.jp>
Date:   Sun Mar 12 16:27:55 2023 +0900

    Fix `Parameter.is_real()` (Qiskit#9664)

    * fix bug

    * add reno

    * Update releasenotes/notes/fix-parameter-is_real-8b8f99811e58075e.yaml

    ---------

    Co-authored-by: Julien Gacon <gaconju@gmail.com>

commit 5a62949
Author: Luciano Bello <bel@zurich.ibm.com>
Date:   Fri Mar 10 23:40:07 2023 +0100

    Qiskit gates not `qelib1.inc` are now defined when dumped (Qiskit#9777)

    * non-standard gates

    * Qiskit gates not qelib1.inc are now defined when dumped

    ---------

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 5ce80ab
Author: Daniel Puzzuoli <dan.puzzuoli@gmail.com>
Date:   Fri Mar 10 11:49:56 2023 -0800

    Implementing CouplingMap.__eq__ (Qiskit#9766)

    * implementing Coupling.__eq__

    * Update qiskit/transpiler/coupling.py

    Co-authored-by: Matthew Treinish <mtreinish@kortar.org>

    * adding comments to test, and adding release note

    * black formatting

    * updating CouplingMap.__eq__ to check edge list equality instead of isomorphism

    * updating release notes

    * updating test doc string

    * Update test/python/transpiler/test_coupling.py

    Co-authored-by: Matthew Treinish <mtreinish@kortar.org>

    * Update test/python/transpiler/test_coupling.py

    Co-authored-by: Matthew Treinish <mtreinish@kortar.org>

    * Update test/python/transpiler/test_coupling.py

    Co-authored-by: Matthew Treinish <mtreinish@kortar.org>

    * Update test/python/transpiler/test_coupling.py

    Co-authored-by: Matthew Treinish <mtreinish@kortar.org>

    ---------

    Co-authored-by: Matthew Treinish <mtreinish@kortar.org>

commit 332f4b2
Author: Jake Lishman <jake.lishman@ibm.com>
Date:   Fri Mar 10 08:31:36 2023 +0000

    Fix zero-qubit `Pauli` label strings (Qiskit#9726)

    It was previously possible to construct a zero-qubit Pauli operator
    using the array form (`Pauli(([], []))`), or by empty-slicing an
    existing Pauli (`Pauli("IXZ")[[]]`).  This commit completes the set by
    making labels with no qubits work as well, for consistency.

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 3284ea0
Author: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com>
Date:   Thu Mar 9 17:56:54 2023 -0600

    Fix `tox -e docs` for macOS (Qiskit#9765)

    * Fix `tox -e docs` for macOS

    Co-authored-by: Jake Lishman <jake@binhbar.com>

    * Fix two issues. Duh, thanks Jake

    * Update Azure job to set RUST_DEBUG

    Not strictly necessary since Tox already sets it. But makes things consistent and avoids accidentally
    removing this in the future

    ---------

    Co-authored-by: Jake Lishman <jake@binhbar.com>

commit d272919
Author: Matthew Treinish <mtreinish@kortar.org>
Date:   Thu Mar 9 18:11:05 2023 -0500

    Suppress PulseSimulator deprecation warning in tests (Qiskit#9767)

    In the recently released qiskit-aer 0.12.0 the PulseSimulator backend
    (used as its name implies to simulate pulse schedules) was deprecated in
    favor of the actively maintained qiskit-dynamcis package. This
    deprecation is causing test failures when running our test suite with
    qiskit-aer installed because a single test was opportunistically using
    the PulseSimulator backend when aer was installed. This commit adds an
    assertion to catch the DeprecationWarning and adds a comment to rewrite
    the test to use dynamics. Although we may not wish to add the optional
    bidirectional dependency for a single test, in which case we should just
    delete the test. But that is a discussion for a follow up PR when CI is
    not blocked by an upstream package's release. This commit is just a
    short term workaround to unblock forward progress.

commit fa7ac68
Author: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com>
Date:   Wed Mar 8 12:05:55 2023 -0600

    Don't require Tweedledum for `qiskit.circuit.classicalfunction` on import (Qiskit#9754)

    * Don't require Tweedledum for `qiskit.circuit.classicalfunction` on import

    * Review feedback

commit 9d33618
Author: Jake Lishman <jake.lishman@ibm.com>
Date:   Wed Mar 8 15:47:39 2023 +0000

    Fix docs build on case-insensitive systems (Qiskit#9748)

    During the switchover of the `SymbolicPulse` classes in the pulse
    library, there are several objects documented under
    `qiskit.library.pulse` that differ only by capitalisation.  Under
    `autosummary`, these therefore generate files with names that differ
    only by capitalisation, which causes naming clashes on systems that have
    case-insensitive semantics, such as macOS.  This then causes warnings to
    be emitted from the Sphinx build, failing it.

    Autosummary has this setting that can be used as a workaround.  I went
    this route rather than converting the documentation to use more inline
    documentation for the library for now, because I expect the clash to be
    more short-lived, and I didn't want to make a change that meaningful
    impacts the style of the documentation without knowing the full context
    around it.

    Co-authored-by: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com>

commit 16f6adb
Author: Junye Huang <h.jun.ye@gmail.com>
Date:   Wed Mar 8 14:09:39 2023 +0100

    Remove non-existent files from MANIFEST.in (Qiskit#9752)

    * remove qiskit/schemas

    * remove include cython files

    * remove include pickle files

commit fe12c26
Author: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com>
Date:   Tue Mar 7 18:44:38 2023 -0600

    Tag Eric in Rust changes (Qiskit#9749)

commit c6cd0d5
Author: Jake Lishman <jake.lishman@ibm.com>
Date:   Tue Mar 7 23:12:39 2023 +0000

    Add structure for multiple Rust crates (Qiskit#9742)

    * Add structure for multiplie Rust extension crates

    This is a precursor to adding an entirely separate and self-contained
    crate to handle parsing of OpenQASM 2 (not 3 - this is kind of like a
    trial run for that).  It could conceivably still live within
    `qiskit._accelerate`, but having separate crates helps us enforce more
    sane API barriers, and has improvements in the incremental build time
    when working on only one of the Rust extensions.

    The intent after this commit is still to have `qiskit._accelerate` as an
    easy catch-all for accelerators for Python.  Developers should not need
    to be concerned with defining a new crate for every new feature, and for
    the most part `_accelerate` is still logically interoperative within
    itself (for example, `NLayout` is used all over).  This is just laying
    out the groundwork so more complex crate additions _can_ also be made.

    Some of the niceties to do with Cargo workspaces only became stabilised
    in Rust 1.64.  In particular, inheritance from the workspace root for
    things like the package version, Rust version, and dependencies only
    came in then.  For now, the `workspace.packages` key in the root
    `Cargo.toml` is ignored with a small warning during the build, but I've
    put it in place mostly to keep track of what we can change once the MSRV
    becomes 1.64 or greater (likely not til at least Terra 0.26).

    * Add README.md to crates/accelerate

    * Correct licence metadata

commit 2553376
Author: Julien Gacon <gaconju@gmail.com>
Date:   Tue Mar 7 13:15:22 2023 +0100

    Fix bitstring padding in the `BackendSampler` (Qiskit#9744)

    * fix padding

    * add reno

commit 5c49d14
Author: Etienne Wodey <44871469+airwoodix@users.noreply.github.com>
Date:   Mon Mar 6 20:25:02 2023 +0100

    test/transpiler: add regression tests for Qiskit#9701 (Qiskit#9739)

commit 80ca1f3
Author: Shelly Garion <46566946+ShellyGarion@users.noreply.github.com>
Date:   Mon Mar 6 19:23:14 2023 +0200

    Add inverse method to ECRGate (Qiskit#9733)

    * add inverse method to ECRGate

    * add release notes

    * Fix sphinx tags

    * Recategorise as bugfix

    ---------

    Co-authored-by: Julien Gacon <gaconju@gmail.com>
    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
    Co-authored-by: Jake Lishman <jake.lishman@ibm.com>

commit 126c9ba
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Mar 6 14:12:24 2023 +0000

    Bump rayon from 1.6.1 to 1.7.0 (Qiskit#9737)

    Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.6.1 to 1.7.0.
    - [Release notes](https://github.com/rayon-rs/rayon/releases)
    - [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md)
    - [Commits](rayon-rs/rayon@rayon-core-v1.6.1...rayon-core-v1.7.0)

    ---
    updated-dependencies:
    - dependency-name: rayon
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 6d12cdd
Author: Junye Huang <h.jun.ye@gmail.com>
Date:   Mon Mar 6 13:57:14 2023 +0100

    Update slack invite link to https://qisk.it/join-slack (Qiskit#9736)

commit b99ef32
Author: Jake Lishman <jake.lishman@ibm.com>
Date:   Sun Mar 5 15:59:19 2023 +0000

    Add docs team to tag list for docs configuation changes (Qiskit#9714)

    This adds the current docs team to the qiskit-bot configuration to get
    automatically tagged when changes to the `docs` folder are made.  For
    the most part, this should just be about the documentation build itself,
    which is under their umbrella, rather than the text of the API docs
    which is largely generated from Terra's Python source code.

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit dbdf867
Author: John Lapeyre <jlapeyre@users.noreply.github.com>
Date:   Sat Mar 4 13:43:06 2023 -0500

    Fix typo in docstring (Qiskit#9730)
@kdk kdk mentioned this pull request Apr 3, 2023
6 tasks
giacomoRanieri pushed a commit to giacomoRanieri/qiskit-terra that referenced this pull request Apr 16, 2023
* Add support to CouplingMap for disjoint qubits

Previously the CouplingMap class only supported graphs which were fully
connected. This prevented us from modeling potential hardware which
didn't have a path between all qubits. This isn't an inherent limitation
of the underlying graph data structure but was a limitation put on the
CouplingMap class because several pieces of the transpiler assume a path
always exists between 2 qubits (mainly in layout and routing). This
commit removes this limitation and also adds a method to get a subgraph
CouplingMap for all the components of the CouplingMap. This enables us
to model these devices with a CouplingMap, which is the first step
towards supporting these devices in the transpiler.

One limitation with this PR is most fo the layout and routing algorithms
do not support disjoint connectivity. The primary exception being
TrivialLayout (although the output might be invalid) VF2Layout and
VF2PostLayout which inherently support this already. This commit lays
the groundwork to fix this limitation in a follow-up PR but for the time
being it just raises an error in those passes if a disconnected
CouplingMap is being used. The intent here is to follow up to this commit
soon for adding support for SabreLayout, SabreSwap, DenseLayout,
and StochasticSwap to leverage the method get_component_subgraphs added
here to make them usable on such coupling maps.

* Remove coupling map connected check from NoiseAdaptiveLayout

Noise adaptive layout doesn't use a CouplingMap so we can't check for a
disconnected coupling map in it.

* Change DenseLayout guard to only prevent running when it won't work

* Rename get_component_subgraphs to components and cache result

This commit renames the get_component_subgraphs() method to components()
which is much more consise name. At the same time this adds caching to
the return just in case building the component subgraphs is expensive to
compute we only need to ever do it once.

* Drop caching of connected components

* Fix check for dense layout to do a valid comparison

* Ensure self loops in CouplingMap.distance() return 0

In a previous commit the distance() method was updated to handle
disjoint graphs correctly. Prior to this PR it was expected to raise
when a path didn't exist between 2 qubits by nature of the distance
matrix construction failing if there was a disconnected coupling map.
Since that isn't the case after this PR the error condition was
changed to check explicitly that there is no path available and then
error. However, there was an issue in this case and self loops would
incorrectly error as well when instead they should return 0. This commit
updates the error check to ignore self loops so they return correctly.

* Fix lint

* Update CouplingMap.components() docstring

Co-authored-by: Kevin Krsulich <kevin@krsulich.net>

* Expand test coverage

* Remove unused option for strongly connected components

* Expand docstring to explain return list order

* Use infinity for disconnected nodes in distance matrix

* Update releasenotes/notes/add-cmap-componets-7ed56cdf294150f1.yaml

* Rename CouplingMap.components to connected_components()

THis commit renames the CouplingMap.components() method to
connected_components(). It also adds an example to the docstring to
better explain what a connected component is.

* Fix typo in relaese note

* Update method name in release note

* Restore previous reduce() behavior

The current reduce() error behavior of raising on trying to reduce to a
disconnected coupling map is being depended on in other locations. To
avoid a potentially breaking change this commit reverts the removal of
that limitation in the method. We can look at doing that in the future
independently of this PR because removing this specific restriction on
the reduce() method is not 100% tied to generally allowing disconnected
coupling map objects.

* Add missing import

---------

Co-authored-by: Kevin Krsulich <kevin@krsulich.net>
@mtreinish
Copy link
Member Author

Ah okey I found it's written in a3cf7ff. It would be great if you could add some option to disable this check, e.g. in QE we (may) want to have reduced coupling map for experiment qubits, which might be disconnected.

Sorry I missed this comment at the time. In the short term we can work around this limitation with reduce by calling the deprecated CouplingMap.subgraph() which doesn't have this check. Alternatively you can just do:

subgraph = CouplingMap()
subgraph.graph = cmap.graph.subgraph(nodes)

to do what subgraph does internally. The only practical difference with doing it either of these ways is that the subgraph method (either on CouplingMap or PyDiGraph) doesn't preserve the input node order. I think for 0.25.0 we can look at removing the restriction on the reduce() method.

king-p3nguin pushed a commit to king-p3nguin/qiskit-terra that referenced this pull request May 22, 2023
* Add support to CouplingMap for disjoint qubits

Previously the CouplingMap class only supported graphs which were fully
connected. This prevented us from modeling potential hardware which
didn't have a path between all qubits. This isn't an inherent limitation
of the underlying graph data structure but was a limitation put on the
CouplingMap class because several pieces of the transpiler assume a path
always exists between 2 qubits (mainly in layout and routing). This
commit removes this limitation and also adds a method to get a subgraph
CouplingMap for all the components of the CouplingMap. This enables us
to model these devices with a CouplingMap, which is the first step
towards supporting these devices in the transpiler.

One limitation with this PR is most fo the layout and routing algorithms
do not support disjoint connectivity. The primary exception being
TrivialLayout (although the output might be invalid) VF2Layout and
VF2PostLayout which inherently support this already. This commit lays
the groundwork to fix this limitation in a follow-up PR but for the time
being it just raises an error in those passes if a disconnected
CouplingMap is being used. The intent here is to follow up to this commit
soon for adding support for SabreLayout, SabreSwap, DenseLayout,
and StochasticSwap to leverage the method get_component_subgraphs added
here to make them usable on such coupling maps.

* Remove coupling map connected check from NoiseAdaptiveLayout

Noise adaptive layout doesn't use a CouplingMap so we can't check for a
disconnected coupling map in it.

* Change DenseLayout guard to only prevent running when it won't work

* Rename get_component_subgraphs to components and cache result

This commit renames the get_component_subgraphs() method to components()
which is much more consise name. At the same time this adds caching to
the return just in case building the component subgraphs is expensive to
compute we only need to ever do it once.

* Drop caching of connected components

* Fix check for dense layout to do a valid comparison

* Ensure self loops in CouplingMap.distance() return 0

In a previous commit the distance() method was updated to handle
disjoint graphs correctly. Prior to this PR it was expected to raise
when a path didn't exist between 2 qubits by nature of the distance
matrix construction failing if there was a disconnected coupling map.
Since that isn't the case after this PR the error condition was
changed to check explicitly that there is no path available and then
error. However, there was an issue in this case and self loops would
incorrectly error as well when instead they should return 0. This commit
updates the error check to ignore self loops so they return correctly.

* Fix lint

* Update CouplingMap.components() docstring

Co-authored-by: Kevin Krsulich <kevin@krsulich.net>

* Expand test coverage

* Remove unused option for strongly connected components

* Expand docstring to explain return list order

* Use infinity for disconnected nodes in distance matrix

* Update releasenotes/notes/add-cmap-componets-7ed56cdf294150f1.yaml

* Rename CouplingMap.components to connected_components()

THis commit renames the CouplingMap.components() method to
connected_components(). It also adds an example to the docstring to
better explain what a connected component is.

* Fix typo in relaese note

* Update method name in release note

* Restore previous reduce() behavior

The current reduce() error behavior of raising on trying to reduce to a
disconnected coupling map is being depended on in other locations. To
avoid a potentially breaking change this commit reverts the removal of
that limitation in the method. We can look at doing that in the future
independently of this PR because removing this specific restriction on
the reduce() method is not 100% tied to generally allowing disconnected
coupling map objects.

* Add missing import

---------

Co-authored-by: Kevin Krsulich <kevin@krsulich.net>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Changelog: New Feature Include in the "Added" section of the changelog mod: transpiler Issues and PRs related to Transpiler
Projects
Transpiler
  
done
Development

Successfully merging this pull request may close these issues.

None yet

9 participants