• Stars
    star
    279
  • Rank 147,117 (Top 3 %)
  • Language
    Python
  • License
    Apache License 2.0
  • Created almost 4 years ago
  • Updated 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Quantum Hardware Design. Open-source project for engineers and scientists to design superconducting quantum devices with ease.

Qiskit Metal

LicenseReleasejoin slackDOI

Welcome to Qiskit Metal! Qiskit Metal is an open-source framework for engineers and scientists to design superconducting quantum devices with ease.

Installation

If you are interested in customizing your experience, or if you are unable to install qiskit-metal using the pip install instructions below, consider installing directly the source code, following the instructions in the documentation and/or the installation instructions for developers.

For normal use, please continue reading.

The Qiskit Metal deployed package

You can install Qiskit Metal via the pip tool (a python package manager).

pip install qiskit-metal

PIP will handle most of the dependencies automatically and you will always install the latest (and well-tested) version of the package.

Some of the dependencies, namely pyside2 and geopandas, might require manual installation, depending on your specific system compatibility. If you encounter installation or execution errors, please refer first to the FAQ.

We recommend to install qiskit-metal in a conda environment or venv, to prevent version conflicts with pre-existing package versions.

Jupyter Notebook

At this time, we recommend using Jupyter notebook/lab to be able to access all the Qiskit Metal features. Jupyter is not installed with the default dependencies, to accommodate those users intending to utilize a centralized or customized installation.

If you require a fresh installation, please refer to either anaconda.org or jupyter.org.

Unless you installed the entire jupyter package in your current environment, do not forget to create the appropriate kernel to make the environment (thus qiskit-metal) available to jupyter (instructions in the FAQ)

Creating Your First Quantum Component in Qiskit Metal:

Now that Qiskit Metal is installed, it's time to begin working with it. We are ready to try out a quantum chip example, which is simulated locally using the Qiskit MetalGUI element. This is a simple example that makes a qubit.

$ python
>>> from qiskit_metal import designs, draw, MetalGUI, Dict, open_docs
>>> design = designs.DesignPlanar()
>>> design.overwrite_enabled = True
>>> design.chips.main
>>> design.chips.main.size.size_x = '11mm'
>>> design.chips.main.size.size_y = '9mm'
>>> gui = MetalGUI(design)

Launch the Qiskit Metal GUI to interactively view, edit, and simulate a QDesign:

>>> gui = MetalGUI(design)

Let's create a new qubit (a transmon) by creating an object of this class.

>>> from qiskit_metal.qlibrary.qubits.transmon_pocket import TransmonPocket
>>> q1 = TransmonPocket(design, 'Q1', options=dict(connection_pads=dict(a=dict())))
>>> gui.rebuild()
>>> gui.edit_component('Q1')
>>> gui.autoscale()

Change options.

>>> q1.options.pos_x = '0.5 mm'
>>> q1.options.pos_y = '0.25 mm'
>>> q1.options.pad_height = '90um'
>>> q1.options.pad_width  = '455um'
>>> q1.options.pad_gap    = '30 um'

Update the component geometry after changing the options.

>>> gui.rebuild()

Example_Image!

Get a list of all the qcomponents in QDesign and then zoom on them.

>>> all_component_names = design.components.keys()
>>> gui.zoom_on_components(all_component_names)

Closing the Qiskit Metal GUI.

>>> gui.main_window.close()

A script is available here, where we also show the overview of Qiskit Metal.

Community and Support

Watch the recorded tutorials

Video Tutorials

The streaming will also be recorded and made available here for offline review.

Take part in the live tutorials and discussion

Through June 2021 we are offering live tutorials and Q&A. Sign up to receive an invite to the upcoming sessions. The streaming will also be recorded and made available for offline review. Find here more details on schedule and use the Slack channel to give us feedback and to request the most relevant content to you.

Get help: Slack

join slack

Use the slack channel. Join qiskit slack and then join the #metal channel to communicate with the developers and other participants. You may also use this channel to inquire about collaborations.

Contribution Guidelines

If you'd like to contribute to Qiskit Metal, please take a look at our contribution guidelines. This project adheres to Qiskit's code of conduct. By participating, you are expected to uphold this code. We use GitHub issues for tracking requests and bugs. Please join the Qiskit Slack community and use our Qiskit Slack channel for discussion and simple questions. For questions that are more suited for a forum we use the Qiskit tag in the Stack Exchange.

Next Steps

Now you're set up and ready to check out some of the other examples from our Qiskit Metal Tutorials repository or Qiskit Metal Documentation.

Authors and Citation

Qiskit Metal is the work of many people who contribute to the project at different levels. Metal was conceived and developed by Zlatko Minev at IBM; then co-led with Thomas McConkey. If you use Qiskit Metal, please cite as per the included BibTeX file. For icon attributions, see here.

Changelog and Release Notes

The changelog provides a quick overview of notable changes for a given release.

The changelog for a particular release can be found in the correspondent Github release page. For example, you can find the changelog for the 0.0.4 release here

The changelog for all releases can be found in the release page: Releases

Additionally, as part of each release detailed release notes are written to document in detail what has changed as part of a release. This includes any documentation on potential breaking changes on upgrade and new features.

License

Apache License 2.0

More Repositories

1

qiskit-community-tutorials

A collection of Jupyter notebooks developed by the community showing how to use Qiskit
Jupyter Notebook
676
star
2

qiskit-machine-learning

Quantum Machine Learning
Python
647
star
3

qiskit-aqua

Quantum Algorithms & Applications (**DEPRECATED** since April 2021 - see readme for more info)
Python
573
star
4

qiskit-nature

Qiskit Nature is an open-source, quantum computing, framework for solving quantum mechanical natural science problems.
Python
297
star
5

IBMQuantumChallenge2020

Quantum Challenge problem sets
Jupyter Notebook
251
star
6

qiskit-finance

Quantum Finance
Python
228
star
7

qiskit-optimization

Quantum Optimization
Python
224
star
8

qiskit-ignis

Ignis (deprecated) provides tools for quantum hardware verification, noise characterization, and error correction.
Python
167
star
9

ibm-quantum-challenge-2021

For IBM Quantum Challenge 2021 (May 20 - 26)
Jupyter Notebook
154
star
10

ibm-quantum-challenge-2024

For IBM Quantum Challenge 2024 (5-14 June 2024)
Jupyter Notebook
148
star
11

ibm-quantum-challenge-spring-2023

For IBM Quantum Challenge Spring 2023
Jupyter Notebook
145
star
12

qiskit-translations

Home of Qiskit documentation translations
Shell
143
star
13

ibm-quantum-challenge-fall-2021

For IBM Quantum Challenge Fall 2021
Jupyter Notebook
139
star
14

ibm-quantum-challenge-fall-22

For IBM Quantum Fall Challenge 2022
Jupyter Notebook
120
star
15

may4_challenge_exercises

Original versions of the exercises
Jupyter Notebook
120
star
16

qiskit-js

⚛️ Qiskit (Quantum Information Science Kit) for JavaScript
JavaScript
114
star
17

qiskit-algorithms

A library of quantum algorithms for Qiskit.
Python
103
star
18

qiskit-dynamics

Tools for building and solving models of quantum systems in Qiskit
Python
102
star
19

ibm-quantum-spring-challenge-2022

Jupyter Notebook
99
star
20

qgss-2023

All things Qiskit Global Summer School 2023: Theory to Implementation - Lecture notes, Labs and Solutions
Jupyter Notebook
96
star
21

open-science-prize-2021

Jupyter Notebook
84
star
22

quantum-explorers

A self-paced, quantum computing learning journey for high school students and above.
Jupyter Notebook
81
star
23

qiskit-presentations

Awesome Qiskit presentations
Jupyter Notebook
79
star
24

qiskit-qec

Qiskit quantum error correction framework
Python
78
star
25

open-science-prize-2022

Jupyter Notebook
68
star
26

qiskit-research

Research using Qiskit.
Python
64
star
27

qiskit-braket-provider

Qiskit-Braket provider to execute Qiskit programs on quantum computing hardware devices through Amazon Braket.
Python
57
star
28

mapomatic

Automatic mapping of compiled circuits to low-noise sub-graphs
Python
55
star
29

qiskit-application-modules-demo-sessions

Demo notebooks for Qiskit application modules demo sessions (Oct 8 & 15):
Jupyter Notebook
49
star
30

ibm-quantum-challenge-africa-2021

For IBM Quantum Challenge Africa 2021, 9 September (07:00 UTC) - 20 September (23:00 UTC).
Jupyter Notebook
49
star
31

Quantum-Challenge-Grader

Grading client for the IBM Quantum Challenges
Python
43
star
32

ICPC-Quantum-Challenge-2021

Original version of the exercises for the 2021 ICPC Quantum Computing Challenge
Jupyter Notebook
42
star
33

open-science-prize

Jupyter Notebook
42
star
34

intro-to-quantum-computing-and-quantum-hardware

intro-to-quantum-computing-and-quantum-hardware
42
star
35

MicroQiskit

Jupyter Notebook
42
star
36

qiskit-ionq

Qiskit provider for IonQ backends
Python
41
star
37

quantum-prototype-template

A template repository for generating new quantum prototypes based on Qiskit
Python
40
star
38

qiskit-swift

Qiskit in swift
Swift
39
star
39

prototype-quantum-kernel-training

Toolkit for training quantum kernels in machine learning applications
Python
39
star
40

qiskit-hackathon-korea-22

Jupyter Notebook
35
star
41

lindbladmpo

A matrix-product-operators solver for the dynamics of interacting qubits modeled by a Lindblad master equation, written in C++ and wrapped with an easy-to-use Python interface.
Python
35
star
42

qiskit-hackathon-korea-21

A repository for Qiskit Hackathon Korea (February 16-19, 2021)
33
star
43

qiskit-hackathon-taiwan-20

32
star
44

qiskit-cold-atom

Tools to control cold-atom-based quantum simulators and quantum computers.
Python
29
star
45

prototype-entanglement-forging

A module for simulating chemical and physical systems using a Variational Quantum Eigensolver (VQE) enhanced by Entanglement Forging.
Python
29
star
46

prototype-zne

Zero Noise Extrapolation (ZNE) prototype for error mitigation on the Qiskit Estimator primitive
Python
29
star
47

QuantumBlur

Jupyter Notebook
28
star
48

povm-toolbox

A toolbox for the implementation of positive operator-valued measures (POVMs).
Python
28
star
49

qiskit-aqt-provider

Qiskit provider for AQT backends.
Python
27
star
50

prototype-qrao

Quantum random access optimization prototype
Python
27
star
51

qiskit-dell-runtime

Qiskit Dell Runtime is a Qiskit Runtime platform that can execute classical-quantum code on both local and on-premise environments. With this platform, hybrid classical-quantum code bundle can be developed and executed. Powered by Qiskit Runtime API, this execution model provides close-integration of classical and quantum execution.
Python
27
star
52

QuantumGraph

Jupyter Notebook
26
star
53

qiskit-app-benchmarks

Qiskit Application Benchmarks
Python
25
star
54

qiskit-qcgpu-provider

A provider which allows Qiskit to use the QCGPU simulator
Python
25
star
55

qopt-best-practices

A collection of guidelines to run quantum optimization algorithms on superconducting qubits with Qiskit, using as reference the Quantum Approximate Optimization Algorithm (QAOA) workflow.
Jupyter Notebook
25
star
56

qiskit-quantinuum-provider

Qiskit provider for Quantinuum backends.
Python
21
star
57

qiskit-pocket-guide

Code from the Qiskit Pocket Guide book
Jupyter Notebook
21
star
58

ffsim

Faster simulations of fermionic quantum circuits.
Python
19
star
59

qiskit-camp-europe-19

19
star
60

blackwater

Library for solving quantum computing problems using machine learning
Python
19
star
61

qiskit-jku-provider

A local provider which allows Qiskit to use a decision-diagrams quantum simulator from JKU
C++
19
star
62

awesome-qiskit

Awesome Qiskit is a list of projects, tools, utilities, libraries and tutorials from a broad community of developers and researchers.
Python
19
star
63

openshift-quantum-operators

Jupyter Notebook
18
star
64

qiskit-nature-pyscf

Documentation at https://qiskit-community.github.io/qiskit-nature-pyscf/
Python
18
star
65

subgraph-isomorphism

A quantum algorithm for the subgraph isomorphism problem
Python
16
star
66

qiskit_rng

Quantum random number generator with CQC extractor
Python
16
star
67

qiskit-aqua-interfaces

qiskit-aqua-interfaces provides command-line and graphical interfaces for executing experiments using Qiskit Aqua.
Python
16
star
68

qiskit-camp-africa-19

Qiskit Camp Africa - December 11-14, 2019
15
star
69

korean-community

Jupyter Notebook
15
star
70

qiskit-qubit-reuse

A Qiskit transpiler stage plugin to enable qubit reuse via mid-circuit measurement and reset.
Python
15
star
71

qiskit-alt

High-performance Qiskit features backed by Julia. A Python front end to algorithms using Pauli and Fermionic operators implemented in Julia.
Python
13
star
72

qiskit-summer-jam-20

13
star
73

quantum-algorithms-benchmarks

Jupyter Notebook
12
star
74

qiskit-hackathon-singapore-19

11
star
75

community.qiskit.org

Home of the Qiskit Community
HTML
11
star
76

qiskit-hackathon-bilbao-19

Main repository for the Quantum Hackathon in Bilbao
10
star
77

quantum-fridays

Jupyter Notebook
10
star
78

repo-monitor

Python
9
star
79

mzm-phase-boundary

This repository contains the code and data from the manuscript "Simulating spectroscopic detection of Majorana zero modes with a superconducting quantum computer."
Jupyter Notebook
9
star
80

qiskit-benchmarks

A performance comparinson of Qiskit contributions
Python
8
star
81

QCHack-2022

8
star
82

qiskit.camp

Qiskit.camp 19 - Bringing together the Qiskit community
CSS
8
star
83

may4_challenge

Happy birthday IQX
Python
7
star
84

dsm-swap

A doubly stochastic matrices-based approach to optimal qubit routing
Python
7
star
85

quantum-hackathon-korea-22

7
star
86

arraylias

A Python library for automatic aliasing of multiple array libraries
Python
7
star
87

qiskit-toqm

Qiskit Terra transpiler passes for the Time-Optimal Qubit Mapping (TOQM) algorithm.
Python
7
star
88

Qiskit-Hackathon-at-World-of-QUANTUM

Jupyter Notebook
6
star
89

Qiskit-runtime-primitives-with-MATLAB

Qiskit Runtime Primitives through Matlab
MATLAB
6
star
90

archiver4qiskit

Tools to help record data from Qiskit jobs
Python
5
star
91

qiskit-nature-psi4

Python
5
star
92

QiskitUnityAsset

Qiskit Unity Asset official repository
C#
5
star
93

qiskit-translations-staging

Home of Staging Site of Qiskit Documentation Translations
5
star
94

qiskit-vue

Qiskit components library for Vue.
HTML
5
star
95

Qiskit-Resources

A curated list of all the Qiskit Resources in a single place
5
star
96

qiskit-bip-mapper

Qiskit transpiler plugin for BIP Mapping routing pass
Python
5
star
97

technical-integration-guidance

Jupyter Notebook
5
star
98

interactive-formula

4
star
99

virtual-event-guide

4
star
100

quantum-hackathon-korea-21

4
star