-
Notifications
You must be signed in to change notification settings - Fork 26
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
✨ Native Support for Qiskit Backends #75
Merged
Merged
Conversation
This file contains 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
…esults with pointer
Codecov Report
@@ Coverage Diff @@
## main #75 +/- ##
=======================================
+ Coverage 90.7% 90.8% +0.1%
=======================================
Files 22 22
Lines 1843 1877 +34
=======================================
+ Hits 1672 1706 +34
Misses 171 171
Continue to review full report at Codecov.
|
… mapping Signed-off-by: Lukas Burgholzer <lukas.burgholzer@jku.at>
… coupling map Signed-off-by: Lukas Burgholzer <lukas.burgholzer@jku.at>
Signed-off-by: Lukas Burgholzer <lukas.burgholzer@jku.at>
Signed-off-by: Lukas Burgholzer <lukas.burgholzer@jku.at>
Signed-off-by: Lukas Burgholzer <lukas.burgholzer@jku.at>
Signed-off-by: Lukas Burgholzer <lukas.burgholzer@jku.at>
Signed-off-by: Lukas Burgholzer <lukas.burgholzer@jku.at>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR brings native support for using Qiskit Backends (e.g.,
FakeLondon()
) as architectures in QMAP.To this end, native translation is provided for all backends implementing either the
BackendV1
or them oderBackendV2
interface.In addition to that, QMAP can now als natively read device properties from Qiskit backends, either via the
BackendProperties
class or the modernTarget
class.In the process, the way device properties and/or calibration data is handled in QMAP has been completely refactored.
This should make it easier to incorporate this information into the available mapping passes in the future.
Solves #12 🥳