-
Notifications
You must be signed in to change notification settings - Fork 3k
Add a new argument concurrent_measurements to target class #10258
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
Merged
nkanazawa1989
merged 35 commits into
Qiskit:main
from
to24toro:feature/target_from_cofiguration
Jul 20, 2023
Merged
Changes from 30 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
6a3b145
fix measure_v2
to24toro 3cd1192
modify measure_all
to24toro 58023f5
dispatch backend
to24toro 93a9262
add test of the builder with backendV2
to24toro 2cc5451
reconfigure test codes and some func
to24toro a21cc84
refactoring
to24toro b3607ee
add reno
to24toro bd1e169
fix _measure_v2
to24toro d70796f
fix backend.meas_map in measure_v2
to24toro 2a651dd
fix reno
to24toro 8d92531
delete get_qubit_channels from utils
to24toro 9b2b80d
add get_qubits_channels in qubit_channels
to24toro 891c1bd
recostruct test about the builder with backendV2
to24toro 83a31b3
add meas_map to Target class
to24toro f7a1cdb
Merge branch 'main' into feature/target_from_cofiguration
to24toro cf4357b
fix after mergin main branch
to24toro 407f87d
fix documents about meas_map
to24toro 609cfc3
Merge branch 'main' into feature/target_from_cofiguration
to24toro 0b34040
format target.py
to24toro 985a552
add reno
to24toro ca03dff
add meas_map to target in convert_to_target
to24toro dc45405
add the more description about meas_map
to24toro 3cc4189
Update releasenotes/notes/enable_target_aware_meas_map-0d8542402a74e9…
to24toro a4926d3
fix test_meas_map
to24toro 6deb381
remove format_meas_map
to24toro e49b319
rename meas_map in target to concurrent_measuments
to24toro 6a2c9a1
Merge branch 'main' into feature/target_from_cofiguration
to24toro 3ce53fa
change reno
to24toro 3d4d0a3
remove Unused Union Dict
to24toro dc3838d
concurrent_measurements set as getattr(configuration, meas_map)
to24toro 837ba2a
Update qiskit/transpiler/target.py
to24toro a054b2b
Update qiskit/transpiler/target.py
to24toro 8f1770b
Merge branch 'main' into feature/target_from_cofiguration
to24toro d949c59
format
to24toro e44756a
Merge branch 'main' into feature/target_from_cofiguration
to24toro File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
releasenotes/notes/enable_target_aware_meas_map-0d8542402a74e9d8.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| --- | ||
| features: | ||
| - | | ||
| Added :attr:`~.Target.concurrent_measurements` which represents a hardware constraint of qubits | ||
| measured concurrently. This constraint is provided in the nested list form, | ||
| in which each element represents qubit group to be measured together. | ||
| In an example below, | ||
|
|
||
| .. code-block:: python | ||
|
|
||
| [[0, 1], [2, 3, 4]] | ||
|
|
||
| qubits 0 and 1, and 2, 3 and 4 are measured together on the device. | ||
| This constraint doesn't block measuring an individual qubit, | ||
| however, Qiskit scheduler must consider the alignment of | ||
| measure operations for those qubits. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.