Boot.dev Blog ยป Misc ยป Quantum Programming 101: Backend Monitor

Quantum Programming 101: Backend Monitor

By Macauley Coggins on May 12, 2020

Curated backend podcasts, videos and articles. All free.

Want to improve your backend development skills? Subscribe to get a copy of The Boot.dev Beat in your inbox each month. It's a newsletter packed with the best content for new backend devs.

Introduction ๐Ÿ”—

In a previous tutorial we showed how you can get basic information on all quantum devices using backend_overview().

While this function is great to get information on all quantum devices at a glance it is not detailed on specific information such as qubit and gate errors. To get more detailed information on a quantum device (such as configuration and individual qubits and gates) you can use backend_monitor().

Implementation ๐Ÿ”—

Unlike backend_overview() this is for getting information on a specific device so you have to pass the device name in to the function as an argument.

For example to get real time information on the IBMQ Burlngton device you enter the following:

backend_monitor(provider.backends.ibmq_burlington)

and for another device like IBMQ Vigo:

backend_monitor(provider.backends.ibmq_vigo)

Steps ๐Ÿ”—

  1. Copy and paste the code below in to a python file
  2. Enter your API token in the IBMQ.enable_account(‘Insert API token here’) part
  3. Save and run

Code ๐Ÿ”—

from qiskit import IBMQ
from qiskit.tools.monitor import backend_monitor

IBMQ.enable_account('ENTER API KEY HERE') # Insert your API token in to here
provider = IBMQ.get_provider(hub='ibm-q')

backend_monitor(provider.backends.ibmq_burlington) # Function to get all information back about a quantum  device  

print('\nPress any key to close')
input()

Output ๐Ÿ”—

After the code is ran you will be given a list of information about the device including the configuration and specific information on individual qubits and gates.

Screenshot showing the device information for the IBMQ Burlington quantum device.

Screenshot showing the device information for the IBMQ Burlington quantum device.

Want to learn about Quantum Programming? Head over to Quantum Computing UK.

Find a problem with this article?

Report an issue on GitHub