Translations:Qiskit/13/en: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
To use a Qiskit circuit with PennyLane, [https://docs.pennylane.ai/en/stable/introduction/importing_workflows.html see this documentation]. You can then run the circuit on MonarQ [https://github.com/calculquebec/pennylane-snowflurry with these instructions]. | To use a Qiskit circuit with PennyLane, [https://docs.pennylane.ai/en/stable/introduction/importing_workflows.html see this documentation]. You can then run the circuit on [[MonarQ/en|MonarQ]] [https://github.com/calculquebec/pennylane-snowflurry with these instructions]. | ||
--> | --> | ||
== Use case: Bell states == | == Use case: Bell states == | ||
Before you create the | Before you create the first state, the required modules need to be loaded. | ||
from qiskit_aer import Aer | from qiskit_aer import Aer | ||
from qiskit import QuantumCircuit, transpile | from qiskit import QuantumCircuit, transpile | ||
from qiskit.visualization import plot_histogram | from qiskit.visualization import plot_histogram |
Latest revision as of 20:21, 24 October 2024
To use a Qiskit circuit with PennyLane, see this documentation. You can then run the circuit on MonarQ with these instructions. -->
Use case: Bell states
Before you create the first state, the required modules need to be loaded.
from qiskit_aer import Aer from qiskit import QuantumCircuit, transpile from qiskit.visualization import plot_histogram