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

Commit a79ca32

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 26b8fe6 + 4bae711 commit a79ca32

6 files changed

Lines changed: 3196 additions & 61 deletions

File tree

.github/CODEOWNERS

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,24 @@
33

44
# Codeowners for individual folders
55
qiskit/* @jaygambetta
6+
qiskit/aer/* @chriseclectic @jaygambetta
7+
qiskit/ignis/* @dcmckayibm @jaygambetta
68

7-
community/hello_world/* @quantumjim
8-
community/hello_world/*/* @quantumjim
9-
community/games/* @quantumjim
10-
community/games/*/* @quantumjim
9+
community/hello_world/* @quantumjim @aasfaw
10+
community/hello_world/*/* @quantumjim @aasfaw
11+
community/games/* @quantumjim @aasfaw
12+
community/games/*/* @quantumjim @aasfaw
1113

12-
community/terra/* @attp @ajavadia
13-
community/terra/*/* @attp @ajavadia
14-
community/algorithms/* @attp @ajavadia
14+
community/terra/* @attp @ajavadia @aasfaw
15+
community/terra/*/* @attp @ajavadia @aasfaw
16+
community/algorithms/* @attp @ajavadia @aasfaw
1517

1618
community/aqua/* @chunfuchen @pistoia
1719
community/aqua/*/* @chunfuchen @pistoia
1820
community/aqua/*/*/* @chunfuchen @pistoia
1921

20-
community/awards/teach_me_qiskit_2018/* @rraymondhp
21-
community/awards/teach_me_qiskit_2018/*/* @rraymondhp
22+
community/awards/teach_me_qiskit_2018/* @rraymondhp @aasfaw
23+
community/awards/teach_me_qiskit_2018/*/* @rraymondhp @aasfaw
2224

23-
community/ignis/* @dcmckayibm
24-
qiskit/ignis/* @dcmckayibm
25-
26-
community/aer/* @chriseclectic
27-
qiskit/aer/* @chriseclectic
25+
community/ignis/* @dcmckayibm @aasfaw
26+
community/aer/* @chriseclectic @aasfaw

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ We have organized the tutorials into two sections:
2323
We've collected a core reference set of notebooks in this section outlining the features of Qiskit. We will be keeping them up to date with the latest Qiskit version.
2424
- [Basics](qiskit/basics) is meant for those who are getting started.
2525
- [Terra](qiskit/terra) is meant for those who want to study circuits.
26+
- [Aer](qiskit/aer) is meant for those who want to simulate quantum circuits.
2627
- [Ignis](qiskit/ignis) is meant for those who want to study noise.
2728
- [Aqua](qiskit/aqua) is meant for those who want to develop applications on NISQ computers.
2829
- [Jupyter](qiskit/jupyter) is meant to highlight some cool Juypter features.

qiskit/aer/building_noise_models.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@
9494
"| `amplitude_damping_error` | A single-qubit generalized amplitude damping error channel given by an amplitude damping parameter $\\lambda$, and an excited state thermal population $p_1$. |\n",
9595
"| `phase_damping_error` | A single-qubit phase damping error channel given by a phase damping parameter $\\gamma$ |\n",
9696
"\n",
97-
"### Combinging quantum errors\n",
97+
"### Combining quantum errors\n",
9898
"\n",
99-
"`QuantumError` instances can be combined to using composittion, tensor product, and tensor expansion (versed order tensor product) to produce new `QuantumErrors` as:\n",
99+
"`QuantumError` instances can be combined by using composition, tensor product, and tensor expansion (reversed order tensor product) to produce new `QuantumErrors` as:\n",
100100
"\n",
101101
" * Composition: $\\cal{E}(\\rho)=\\cal{E_2}(\\cal{E_1}(\\rho))$ as `error = error1.compose(error2)`\n",
102102
" * Tensor product: $\\cal{E}(\\rho) =(\\cal{E_1}\\otimes\\cal{E_2})(\\rho)$ as `error error1.tensor(error2)`\n",

qiskit/ignis/measurement_error_mitigation.ipynb

Lines changed: 161 additions & 45 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)