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

Commit 8aba564

Browse files
authored
Merge pull request #907 from nonhermitian/update_start_here_2
Update start here to new organization
2 parents 26c80cd + 6ba16d6 commit 8aba564

1 file changed

Lines changed: 35 additions & 46 deletions

File tree

start_here.ipynb

Lines changed: 35 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -20,101 +20,99 @@
2020
"\n",
2121
"The focus of these notebooks is not on learning quantum computing. Instead we will focus on how to use Qiskit, and will go into details only when needed. For those interested in learning about quantum computing we recommend the [Qiskit Textbook](https://qiskit.org/textbook) that we and the community have put together, or the [Qiskit documentation](https://qiskit.org/documentation).\n",
2222
"\n",
23-
"Qiskit is made up of four elements: **Terra**, **Aer**, **Ignis**, and **Aqua**. Each element has its own focus, and together they make up the full Qiskit framework. \n",
2423
"\n",
25-
"\n",
26-
"## Terra Fundamentals - Getting Started\n",
24+
"## Circuits\n",
2725
"\n",
2826
"This section gives you the tools to make your first circuits, execute them, and view the data.\n",
2927
"\n",
30-
"1. [Getting started with Qiskit](tutorials/terra/fundamentals/1_getting_started_with_qiskit.ipynb) - How to use Qiskit.\n",
28+
"1. [Getting started with Qiskit](tutorials/circuits/1_getting_started_with_qiskit.ipynb) - How to use Qiskit.\n",
3129
"\n",
3230
"\n",
33-
"2. [Plotting data in Qiskit](tutorials/terra/fundamentals/2_plotting_data_in_qiskit.ipynb) - Illustrates the different ways of plotting data in Qiskit.\n",
31+
"2. [Plotting data in Qiskit](tutorials/circuits/2_plotting_data_in_qiskit.ipynb) - Illustrates the different ways of plotting data in Qiskit.\n",
3432
"\n",
3533
"\n",
36-
"3. [Summary of quantum operations](tutorials/terra/fundamentals/3_summary_of_quantum_operations.ipynb) - List of quantum operations (gates, reset, measurements) in Qiskit Terra\n",
34+
"3. [Summary of quantum operations](tutorials/circuits/3_summary_of_quantum_operations.ipynb) - List of quantum operations (gates, reset, measurements) in Qiskit Terra\n",
3735
" \n",
3836
" \n",
39-
"## Terra Advanced\n",
37+
"## Advanced Circuits\n",
4038
"\n",
41-
"Terra, the ‘earth’ element, is the foundation on which the rest of the software lies. Terra provides a bedrock for composing quantum programs at the level of circuits and pulses, to optimize them for the constraints of a particular device, and to manage the execution of batches of experiments on remote-access devices. Terra defines the interfaces for a desirable end-user experience, as well as the efficient handling of layers of optimization, pulse scheduling and backend communication.\n",
39+
"1. [Advanced circuits](tutorials/circuits_advanced/1_advanced_circuits.ipynb) - Circuit building tools added including registerless declarations, composite gate updates and parameterized circuits.\n",
4240
"\n",
43-
"1. [Advanced circuits](tutorials/terra/advanced/1_advanced_circuits.ipynb) - Circuit building tools added including registerless declarations, composite gate updates and parameterized circuits.\n",
4441
"\n",
42+
"2. [Operators overview](tutorials/circuits_advanced/2_operators_overview.ipynb) - Gives a summary of the features and uses of the Operator class.\n",
4543
"\n",
46-
"2. [Operators overview](tutorials/terra/advanced/2_operators_overview.ipynb) - Gives a summary of the features and uses of the Operator class.\n",
4744
"\n",
45+
"3. [Advanced circuit visualization](tutorials/circuits_advanced/3_advanced_circuit_visualization.ipynb) - Details on drawing your quantum circuits.\n",
4846
"\n",
49-
"3. [Advanced circuit visualization](tutorials/terra/advanced/3_advanced_circuit_visualization.ipynb) - Details on drawing your quantum circuits.\n",
5047
"\n",
48+
"4. [Transpiler passes and passmanager](tutorials/circuits_advanced/4_transpiler_passes_and_passmanager.ipynb) - How to use the transpiler passes, passmanger, and extend the transpiler with a new pass.\n",
5149
"\n",
52-
"4. [Transpiler passes and passmanager](tutorials/terra/advanced/4_transpiler_passes_and_passmanager.ipynb) - How to use the transpiler passes, passmanger, and extend the transpiler with a new pass.\n",
5350
"\n",
51+
"## High-Performance Simulators\n",
5452
"\n",
55-
"## Aer\n",
53+
"To really speed up development of quantum computers, we need better simulators with the ability to model realistic noise processes that occur during computation on actual devices. Qiskit provides a high-performance simulator framework called `Aer` for studying quantum computing algorithms and applications in the noisy intermediate-scale quantum regime. \n",
5654
"\n",
57-
"Aer, the ‘air’ element, permeates all Qiskit elements. To really speed up development of quantum computers, we need better simulators with the ability to model realistic noise processes that occur during computation on actual devices. Aer provides a high-performance simulator framework for studying quantum computing algorithms and applications in the noisy intermediate-scale quantum regime. \n",
58-
"1. [Aer provider](tutorials/aer/1_aer_provider.ipynb) - Gives a summary of the Qiskit Aer provider containing the Qasm, statevector, and unitary simulator.\n",
55+
"1. [Simulators](tutorials/simulators/1_aer_provider.ipynb) - Gives a summary of the Qiskit Aer provider containing the Qasm, statevector, and unitary simulator.\n",
5956
"\n",
6057
"\n",
61-
"2. [Device noise simulation](tutorials/aer/2_device_noise_simulation.ipynb) - Shows how to use the Qiskit Aer noise module to automatically generate a basic noise model for simulating hardware backends.\n",
58+
"2. [Device noise simulation](tutorials/simulators/2_device_noise_simulation.ipynb) - Shows how to use the Qiskit Aer noise module to automatically generate a basic noise model for simulating hardware backends.\n",
6259
"\n",
6360
"\n",
64-
"3. [Building noise models](tutorials/aer/3_building_noise_models.ipynb) - Shows how to use Qiskit Aer noise module to construct custom noise models for noisy simulations\n",
61+
"3. [Building noise models](tutorials/simulators/3_building_noise_models.ipynb) - Shows how to use Qiskit Aer noise module to construct custom noise models for noisy simulations\n",
6562
"\n",
6663
"\n",
67-
"4. [Custom gate noise](tutorials/aer/4_custom_gate_noise.ipynb) - Shows to implement simulations using custom noisy gates.\n",
64+
"4. [Custom gate noise](tutorials/simulators/4_custom_gate_noise.ipynb) - Shows to implement simulations using custom noisy gates.\n",
6865
"\n",
6966
"\n",
70-
"5. [Noise transformations](tutorials/aer/5_noise_transformation.ipynb) - Noise approximation utility functions to construct approximate Clifford noise models out of a general noise model\n",
67+
"5. [Noise transformations](tutorials/simulators/5_noise_transformation.ipynb) - Noise approximation utility functions to construct approximate Clifford noise models out of a general noise model\n",
7168
"\n",
7269
"\n",
73-
"6. [Extended stabilizer tutorial](tutorials/aer/6_extended_stabilizer_tutorial.ipynb) - Gives an overview of the *extended stabilizer* Qasm Simulator method\n",
70+
"6. [Extended stabilizer tutorial](tutorials/simulators/6_extended_stabilizer_tutorial.ipynb) - Gives an overview of the *extended stabilizer* Qasm Simulator method\n",
7471
"\n",
7572
"\n",
76-
"7. [Matrix Product State simulator](tutorials/aer/7_matrix_product_state_method.ipynb) - Gives an overview of the *matrix product state* Simulator method\n",
73+
"7. [Matrix Product State simulator](tutorials/simulations/7_matrix_product_state_method.ipynb) - Gives an overview of the *matrix product state* Simulator method\n",
7774
"\n",
7875
"\n",
79-
"## Ignis\n",
76+
"## Quantum Device Noise Analysis\n",
8077
"\n",
81-
"Ignis, the ‘fire’ element, is dedicated to fighting noise and errors and to forging a new path. This includes better characterization of errors, improving gates, and computing in the presence of noise. Ignis is meant for those who want to design quantum error correction codes, or who wish to study ways to characterize errors through methods such as tomography and randomized benchmarking, or even to find a better way for using gates by exploring dynamical decoupling and optimal control.\n",
78+
"This includes better characterization of errors, improving gates, and computing in the presence of noise. Qiskit `ignis` is meant for those who want to design quantum error correction codes, or who wish to study ways to characterize errors through methods such as tomography and randomized benchmarking, or even to find a better way for using gates by exploring dynamical decoupling and optimal control.\n",
8279
"\n",
83-
"1. [Hamiltonian and gate characterizations](tutorials/ignis/1_hamiltonian_and_gate_characterization.ipynb) - Sequences to measure ZZ rates between qubits and to measure rotation and angle errors in the gates.\n",
80+
"1. [Hamiltonian and gate characterizations](tutorials/noise/1_hamiltonian_and_gate_characterization.ipynb) - Sequences to measure ZZ rates between qubits and to measure rotation and angle errors in the gates.\n",
8481
"\n",
8582
"\n",
86-
"2. [Relaxation and decoherence](tutorials/ignis/2_relaxation_and_decoherence.ipynb) - How to measure coherence times on the real quantum hardware\n",
83+
"2. [Relaxation and decoherence](tutorials/noise/2_relaxation_and_decoherence.ipynb) - How to measure coherence times on the real quantum hardware\n",
8784
"\n",
8885
"\n",
89-
"3. [Measurement error mitigation](tutorials/ignis/3_measurement_error_mitigation.ipynb) - How to peform calibration experiments for measurement errors and fed those calibrations into a \"filter\" that can be utilized to mitigate errors in subsequent experiments.\n",
86+
"3. [Measurement error mitigation](tutorials/noise/3_measurement_error_mitigation.ipynb) - How to peform calibration experiments for measurement errors and fed those calibrations into a \"filter\" that can be utilized to mitigate errors in subsequent experiments.\n",
9087
"\n",
9188
"\n",
92-
"4. [Randomized benchmarking](tutorials/ignis/4_randomized_benchmarking.ipynb) - Randomized benchmarking (RB) is a technique used to measure the average gate error by measuring the outcomes of random Clifford circuits. This is used internally to report gate errors on our systems. \n",
89+
"4. [Randomized benchmarking](tutorials/noise/4_randomized_benchmarking.ipynb) - Randomized benchmarking (RB) is a technique used to measure the average gate error by measuring the outcomes of random Clifford circuits. This is used internally to report gate errors on our systems. \n",
9390
"\n",
9491
"\n",
95-
"5. [Quantum volume](tutorials/ignis/5_quantum_volume.ipynb) - How to run quantum volume measurements on the quantum hardware.\n",
92+
"5. [Quantum volume](tutorials/noise/5_quantum_volume.ipynb) - How to run quantum volume measurements on the quantum hardware.\n",
9693
"\n",
9794
"\n",
98-
"6. [Repetition Code](tutorials/ignis/6_repetition_code.ipynb) - How to run a simple error correction code, known as the repetition code. This can be used to characterize bit flip errors in the hardware.\n",
95+
"6. [Repetition Code](tutorials/noise/6_repetition_code.ipynb) - How to run a simple error correction code, known as the repetition code. This can be used to characterize bit flip errors in the hardware.\n",
9996
"\n",
10097
"\n",
101-
"7. [Accreditation](tutorials/ignis/7_accreditation.ipynb) - protocol devised to characterize the reliability of noisy quantum devices.\n",
98+
"7. [Accreditation](tutorials/noise/7_accreditation.ipynb) - protocol devised to characterize the reliability of noisy quantum devices.\n",
10299
" \n",
103100
" \n",
104-
"## Aqua\n",
101+
"## Optimization\n",
102+
"\n",
103+
"1. [Quadratic Programs](tutorials/optimization/1_quadratic_program.ipynb) - Introduce how to build optimization problems using Qiskit's optimization module.\n",
105104
"\n",
106-
"Aqua, the ‘water’ element, is the element of life. To make quantum computing live up to its expectations, we need to find real-world applications. Aqua is where algorithms for NISQ computers are built. These algorithms can be used to build applications for quantum computing.\n",
107105
"\n",
106+
"2. [Quadratic Program Converters](tutorials/optimization/2_converters_for_quadratic_programs.ipynb) - Qiskit Optimization provides with `QuadraticProgram` a very generic and powerful representation for optimization problems\n",
108107
"\n",
109-
"### Optimization\n",
110108
"\n",
111-
"1. [Hamiltonian and gate characterizations](tutorials/aqua/optimization/1_optimization_problems.ipynb) - Introduce how to construct an optimization models with Qiskit Optimization.\n",
109+
"3. [Minimum Eigen Optimizer](tutorials/optimization/3_minimum_eigen_optimizer) - Solutions to quadratic programs using minimum eigenvalue solvers.\n",
112110
"\n",
113111
"\n",
114-
"2. [Quadratic Program Converters](tutorials/aqua/optimization/2_converters_for_quadratic_programs.ipynb) - Qiskit Optimization provides with `QuadraticProgram` a very generic and powerful representation for optimization problems\n",
112+
"4. [Grover Optimizer](tutorials/optimization/4_grover_optimizer.ipynb) - Explore each component of the `GroverOptimizer`, which utilizes the techniques described in GAS, by minimizing a Quadratic Unconstrained Binary Optimization (QUBO) problem\n",
115113
"\n",
116114
"\n",
117-
"3. [Grover Optimizer](tutorials/aqua/optimization/4_grover_optimizer.ipynb) - Explore each component of the `GroverOptimizer`, which utilizes the techniques described in GAS, by minimizing a Quadratic Unconstrained Binary Optimization (QUBO) problem"
115+
"5. [ADMM Optimizer](tutorials/optimization/5_admm_optimizer.ipynb) - The ADMM Optimizer can solve classes of mixed-binary constrained optimization problems that often appear in logistic, finance, and operation research."
118116
]
119117
},
120118
{
@@ -144,15 +142,6 @@
144142
"import qiskit.tools.jupyter\n",
145143
"%qiskit_copyright"
146144
]
147-
},
148-
{
149-
"cell_type": "code",
150-
"execution_count": null,
151-
"metadata": {
152-
"collapsed": true
153-
},
154-
"outputs": [],
155-
"source": []
156145
}
157146
],
158147
"metadata": {
@@ -172,7 +161,7 @@
172161
"name": "python",
173162
"nbconvert_exporter": "python",
174163
"pygments_lexer": "ipython3",
175-
"version": "3.7.3"
164+
"version": "3.8.2"
176165
},
177166
"varInspector": {
178167
"cols": {

0 commit comments

Comments
 (0)