qiskit
Here are 376 public repositories matching this topic...
-
Updated
Jan 11, 2022 - OpenQASM
-
Updated
Jan 9, 2022 - Jupyter Notebook
Feature details
Due to the similarity, it is easy to confuse qml.X and qml.PauliX, especially since other methods of specifying circuits, e.g., QASM, use x for PauliX. But if a user uses qml.X in their circuit on a qubit device, nothing happens to inform them that the incorrect operation is being used:
@qml.qnode(dev)
def circ():
qml.PauliX(wires=0)
qml.HadaThe grammar was extended with some built-in math functions that were out of the specification. TSC decided that the functions included in Qiskit/openqasm#275 should be part of the specification.
Describe the Issue
- In section 2.4.3 on Controlled Rotations, the line "A controlled R_x(θ) could similarly be made using CNOT gates." seems incorrect.
- I assume that the line claims that replacing R_y(θ/2) by R_x(θ/2) (similarly for the -θ case), in the circuit above, we would get a controlled R_x(θ). This is incorrect.
- Passing |1> through q_0, we get X R_x(-θ/2) X R_x(θ/2)q_1, fo
-
Updated
Oct 14, 2021 - Jupyter Notebook
-
Updated
Apr 10, 2021 - Jupyter Notebook
-
Updated
Jan 29, 2020
Currently mitiq.benchmarks contains RB and mirror circuits, and needs more benchmark circuits.
GHZ circuits provide natural scaling with the number of qubits, are structured (in contrast to random as with RB and mirror circuits), and have additional nice features for benchmarking error mitigation:
- GHZ circuits result in idle qubits for which it is natural to apply dynamical decoupling.
-
Updated
Oct 27, 2021 - Jupyter Notebook
Whenever a slide has minted code, like so:
\begin{frame}[fragile]{Example minted}
\begin{minted}{python}
from qiskit_aqua import run_algorithm
print(run_algorithm(params)['result'])
\end{minted}
\end{frame}One is unable to add the \pagenumber before \end{frame} as it gets left aligned instead of right aligned:
 was added. The task is to remove these redundant casts and add a few assertions/additional tests as needed.
-
Updated
May 21, 2019 - HTML
-
Updated
Jan 8, 2021 - Python
-
Updated
Dec 28, 2021 - Python
-
Updated
Mar 2, 2019 - Python
-
Updated
Sep 21, 2020 - Jupyter Notebook
-
Updated
Jan 7, 2022 - Python
-
Updated
May 19, 2021 - Python
Need more tutorials contributed by the community
-
Updated
Jan 6, 2022 - Python
-
Updated
Oct 17, 2021 - Python
-
Updated
Jul 21, 2020 - Jupyter Notebook
Improve this page
Add a description, image, and links to the qiskit topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the qiskit topic, visit your repo's landing page and select "manage topics."
Environment
What is happening?
The options object from in the fake backends don't get passed down to the underlying simulator. For example, if you ca
How can we reproduce the issue?