Translations:Qiskit/13/en: Difference between revisions
Jump to navigation
Jump to search
(Importing a new version from external source) |
No edit summary |
||
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]. | |||
--> | --> | ||
== | == Use case: Bell states == | ||
Before you create the firast 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 |
Revision as of 21:38, 30 September 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 firast state, the required modules need to be loaded.
from qiskit_aer import Aer from qiskit import QuantumCircuit, transpile from qiskit.visualization import plot_histogram