-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Backend monitor and overview #1231
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
This reverts commit 98e78d0.
nonhermitian
requested review from
1ucian0,
ajavadia,
atilag,
delapuente,
diego-plan9,
ewinston,
jaygambetta,
mtreinish and
taalexander
as code owners
November 7, 2018 10:38
jaygambetta
approved these changes
Dec 15, 2018
man @nonhermitian were you watching this in real time. |
Closed
Merged
lia-approves
pushed a commit
to edasgupta/qiskit-terra
that referenced
this pull request
Jul 30, 2019
* Fix parallezation in transpile.compile * Revert "Fix parallezation in transpile.compile" This reverts commit 98e78d0. * remove oops files * Initial commit for backend_monitor * fix coupling map plotter * forgot to delete line * column labels never move * updates * fix lint * fix module docs * more lint fixes * more lint * linting broke my style * fix TextProgress Bar moved to jupyter folder * updates * fix plotting issue * add type check * fix typo * fix noise plots for symmetric gate_maps * fix style * fix missing docstring * whitespace * fix circular import caused by circuits now using visuals * fix test * need to check HAS_MATPLOTLIB now * add new test notebook * fix path setting * do not need path setting * updates * look for ci env * fix * fix least_busy sort * impliment Diego's fix * fix lint * call it an error map * add to changelog * alignment fixes * fix overview * lint * fix notebooks * text based backend overview * lint fix * import fixes * updates * add test * add backend_monitor * fix for ibmq_qasm_sim and test
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.
Fixes #994
Summary
These are Jupyter magics that gives the overview of all the backends that have been loaded using
IBMQ.load_accounts()
(backend_overview
) or a detailed view of a single backend (backend_monitor
). Thebackend_overview
updates automatically, while the monitor is currently static. Additionally, there is aplot_coupling_map
function in thevisualization
module.Overview
Monitor
Details and comments
Things to do:
update_backend_info
should gracefully handle a status check not working, and should probably terminate if none of the backends are responding (i.e there is no network connection to anything).(Each backend_widget has a is_alive attr, added just for this purpose)mpl_data
is the physical layout of a device on a grid. This should be something that the backend returns.