Translations:Qiskit/13/en: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
(Importing a new version from external source)
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
Pour utiliser un circuit Qiskit en PennyLane, suivez les instructions dans la [https://docs.pennylane.ai/en/stable/introduction/importing_workflows.html documentation]. Vous pouvez ensuite exécuter votre circuit sur MonarQ en suivant les instructions dans la documentation [https://github.com/calculquebec/pennylane-snowflurry pennylane-snowflurry].
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].
-->
-->
== Exemple d'utilisation: états de Bell ==
== Use case: Bell states ==
Nous allons créer le premier état de Bell avec Qiskit. Il faut d'abord importer les modules nécessaires.  
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

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Qiskit)
Pour utiliser un circuit Qiskit en PennyLane, suivez les instructions dans la [https://docs.pennylane.ai/en/stable/introduction/importing_workflows.html documentation]. Vous pouvez ensuite exécuter votre circuit sur MonarQ en suivant les instructions dans la documentation [https://github.com/calculquebec/pennylane-snowflurry pennylane-snowflurry].
-->
== Exemple d'utilisation : États de Bell ==
Nous allons créer le premier état de Bell sur [[MonarQ]]. Il faut d'abord importer les modules nécessaires. 
   from qiskit_aer import Aer
   from qiskit import QuantumCircuit, transpile
   from qiskit.visualization import plot_histogram

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