-
Notifications
You must be signed in to change notification settings - Fork 368
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
Fix AerBackend issues caused by upgrading BackendV2 #1995
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
4587384
add description if no description is provided, build coupling map if …
doichanj 45cde5b
move import line
doichanj b94fd93
fix target for simulator backend
doichanj c20f91b
Merge remote-tracking branch 'upstream/main' into fix_backend_v2
doichanj 55b635b
format
doichanj acda947
remove unused import
doichanj e8f43bf
use translation plugin to rebuild gate sets for simulator
doichanj 06f2fe1
Merge remote-tracking branch 'upstream/main' into fix_backend_v2
doichanj dbb87b4
rename plugin
doichanj 5ea99e3
rebuild of gate sets is eanbled only for opt level 0 and 1
doichanj 8d14345
fix custom pass manager
doichanj a463e1d
fix pass_manager function
doichanj e08fc84
added ccx in NAME_MAPPING
doichanj 2162ea8
added missed gates in NAME_MAPPING
doichanj 6c0dc2e
added release note
doichanj 0d62961
add check if opnodes is None
doichanj d68601b
add check config
doichanj a2c336e
decrease return
doichanj e8cf4e7
check opt level
doichanj 5151558
fix searching ops in control flow blocks
doichanj 4b4d466
Merge remote-tracking branch 'upstream/main' into fix_backend_v2
doichanj c88bdff
Update qiskit_aer/backends/plugin/aer_backend_plugin.py
doichanj 3b0543a
Update qiskit_aer/backends/plugin/aer_backend_plugin.py
doichanj 28e2f06
Merge branch 'main' into fix_backend_v2
doichanj 8afde0b
refer review comments
doichanj c3f0cc4
remove unused import
doichanj 9618e31
Merge remote-tracking branch 'upstream/main' into fix_backend_v2
doichanj 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 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 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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is just a minor comment. Previously, converted
target
was cached. With this change, it will not be cached. I think frequent access oftarget
property will produce performance regression. Introducing caching may help performance (though settingmethod
may need clear cache oftarget
).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
because if target is cached and used for transpilation to multiple circuits, basis gates for the first circuit is reused that can be a problem if the second circuit has gate that the first one does not have