Skip to content
This repository was archived by the owner on Aug 21, 2023. It is now read-only.

Commit 349324b

Browse files
authored
Merge branch 'master' into master
2 parents d971bdf + 1fb513b commit 349324b

3 files changed

Lines changed: 214 additions & 210 deletions

File tree

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ steps:
3838
source /tmp/docs_build/bin/activate
3939
pip install -U qiskit jupyter sphinx nbsphinx sphinx_rtd_theme
4040
pip install 'matplotlib<3.3'
41-
pip install -U qiskit-terra[visualization] cvxpy
41+
pip install -U qiskit[visualization] cvxpy
4242
sudo apt-get install -y pandoc graphviz
4343
displayName: 'Install dependencies'
4444
- bash: |

tutorials/circuits/1_getting_started_with_qiskit.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"source": [
77
"# Getting Started with Qiskit\n",
88
"\n",
9-
"Here, we provide an overview of working with Qiskit. The fundamental package of Qiskit is Terra that provides the basic building blocks necessary to program quantum computers. The fundamental unit of Qiskit is the [**quantum circuit**](https://en.wikipedia.org/wiki/Quantum_circuit). A basic workflow using Qiskit consists of two stages: **Build** and **Execute**. **Build** allows you to make different quantum circuits that represent the problem you are solving, and **Execute** that allows you to run them on different backends. After the jobs have been run, the data is collected and postprocessed depending on the desired output."
9+
"Here, we provide an overview of working with Qiskit. The fundamental package of Qiskit is Terra that provides the basic building blocks necessary to program quantum computers. The fundamental unit of Qiskit is the [quantum circuit](https://en.wikipedia.org/wiki/Quantum_circuit). A basic workflow using Qiskit consists of two stages: **Build** and **Execute**. **Build** allows you to make different quantum circuits that represent the problem you are solving, and **Execute** that allows you to run them on different backends. After the jobs have been run, the data is collected and postprocessed depending on the desired output."
1010
]
1111
},
1212
{
@@ -61,9 +61,9 @@
6161
"$$|\\psi\\rangle = \\left(|000\\rangle+|111\\rangle\\right)/\\sqrt{2}.$$\n",
6262
"\n",
6363
"To create such a state, we start with a three-qubit quantum register. By default, each qubit in the register is initialized to $|0\\rangle$. To make the GHZ state, we apply the following gates:\n",
64-
"* A Hadamard gate $H$ on qubit 0, which puts it into the superposition state $\\left(|0\\rangle+|1\\rangle\\right)/\\sqrt{2}$.\n",
65-
"* A controlled-Not operation ($C_{X}$) between qubit 0 and qubit 1.\n",
66-
"* A controlled-Not operation between qubit 0 and qubit 2.\n",
64+
"- A Hadamard gate $H$ on qubit 0, which puts it into the superposition state $\\left(|0\\rangle+|1\\rangle\\right)/\\sqrt{2}$.\n",
65+
"- A controlled-Not operation ($C_{X}$) between qubit 0 and qubit 1.\n",
66+
"- A controlled-Not operation between qubit 0 and qubit 2.\n",
6767
"\n",
6868
"On an ideal quantum computer, the state produced by running this circuit would be the GHZ state above.\n",
6969
"\n",

0 commit comments

Comments
 (0)