quantum-circuits
Here are 37 public repositories matching this topic...
-
Updated
Feb 1, 2022
-
Updated
May 2, 2022 - C++
-
Updated
Mar 23, 2021 - Mathematica
-
Updated
Jun 3, 2022 - C++
Currently the code branches a lot on the size of the operator being generated (using ints for n<30, float for n<500, bigint ootherwise). ILog2 takes care of some of that branching. See how much you can simplify the code by using it. See Krastanov/QuantumClifford.jl#47 (comment)
-
Updated
Jun 3, 2022 - Python
-
Updated
May 31, 2022 - Python
-
Updated
Jun 3, 2022 - C++
At the moment, QMAP provides a default set of hard-coded architectures to map to. While we allow to specify own architectures (and, in theory, calibration data) in the form of individual input files this is rather inflexible and can be improved.
It should be possible to take an arbitrary Qiskit backend in Python, e.g., anything from https://github.com/Qiskit/qiskit-terra/tree/main/qiskit/test/m
-
Updated
Oct 28, 2021 - TeX
-
Updated
Apr 17, 2022 - Jupyter Notebook
-
Updated
Jan 7, 2020 - Julia
-
Updated
Jul 8, 2020 - JavaScript
-
Updated
Jun 2, 2022 - Python
-
Updated
Sep 17, 2020 - Jupyter Notebook
-
Updated
Sep 29, 2019 - Java
To be consistent, optimization_level=1 needs to be added to get_one_benchmark method for the independent layer.
- Parameter added
- Created new release afterwards
-
Updated
Jun 15, 2021 - Jupyter Notebook
-
Updated
Sep 22, 2021 - Jupyter Notebook
-
Updated
Dec 13, 2020
-
Updated
Jul 6, 2021 - OpenQASM
-
Updated
May 13, 2020 - TeX
-
Updated
Jan 6, 2019 - JavaScript
-
Updated
Mar 28, 2021 - Q#
-
Updated
Jul 28, 2020 - Python
-
Updated
Feb 25, 2019 - Python
-
Updated
Mar 20, 2021 - Jupyter Notebook
-
Updated
Apr 12, 2022 - Python
-
Updated
Sep 22, 2020
Improve this page
Add a description, image, and links to the quantum-circuits topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the quantum-circuits topic, visit your repo's landing page and select "manage topics."


Is your feature request related to a use case or problem? Please describe.
Right now a lot of modules (in particular tests) are pretty free form with how they do imports. It's a good practice to import modules wherever possible.
bad:
good:
**Describe the soluti