Note
This page was generated from tutorials/algorithms/01_algorithms_introduction.ipynb.
Run interactively in the IBM Quantum lab.
An Introduction to Algorithms in Qiskit¶
This is an introduction to algorithms in Qiskit and provides a high-level overview to help understand the various aspects of the functionality to get started. Other tutorials will provide more in-depth material, on given algorithms, and ways to use them etc.
How is the algorithm library structured?¶
Qiskit provides a number of Algorithms and they are grouped by category according to the task they can perform. For instance Minimum Eigensolvers
to find the smallest eigen value of an operator, for example ground state energy of a chemistry Hamiltonian or a solution to an optimization problem when expressed as an Ising Hamiltonian. There are Classifiers
for machine learning classification problems and
Amplitude Estimators
for value estimation that can be used say in financial applications. The full set of categories can be seen in the Algorithms documentation link above.
Algorithms are configurable and often part of the configuration will be in the form of smaller building blocks, of which different instances of the building block type can be given. For instance with VQE
, the Variational Quantum Eigensolver, it takes a trial wavefunction, in the form of a QuantumCircuit
and a classical optimizer among other things. Such building blocks can be found as Components and as circuits
from the Circuit Library.
Let’s take a look at an example to construct a VQE instance. Here TwoLocal
is the variational form (trial wavefunction), a parameterized circuit which can be varied, and SLSQP
a classical optimizer. These are created as separate instances and passed to VQE when it is constructed. Trying, for example, a different classical optimizer, or variational form is simply a case of creating an instance of the one you want and passing it into VQE.
[1]:
from qiskit.aqua.algorithms import VQE
from qiskit.aqua.components.optimizers import SLSQP
from qiskit.circuit.library import TwoLocal
num_qubits = 2
ansatz = TwoLocal(num_qubits, 'ry', 'cz')
opt = SLSQP(maxiter=1000)
vqe = VQE(var_form=ansatz, optimizer=opt)
/home/computertreker/git/qiskit/qiskit-dup/.tox/docs/lib/python3.7/site-packages/qiskit/aqua/components/optimizers/optimizer.py:50: DeprecationWarning: The package qiskit.aqua.components.optimizers is deprecated. It was moved/refactored to qiskit.algorithms.optimizers (pip install qiskit-terra). For more information see <https://github.com/Qiskit/qiskit-aqua/blob/master/README.md#migration-guide>
'qiskit.algorithms.optimizers', 'qiskit-terra')
/home/computertreker/git/qiskit/qiskit-dup/.tox/docs/lib/python3.7/site-packages/qiskit/aqua/algorithms/vq_algorithm.py:72: DeprecationWarning: The class qiskit.aqua.algorithms.VQAlgorithm is deprecated. It was moved/refactored to qiskit.algorithms.VariationalAlgorithm (pip install qiskit-terra). For more information see <https://github.com/Qiskit/qiskit-aqua/blob/master/README.md#migration-guide>
'qiskit-terra')
Let’s draw the ansatz so we can see it’s a QuantumCircuit where θ[0] through θ[7] will be the parameters that are varied as VQE optimizer finds the minimum eigenvalue. We’ll come back to the parameters later in a working example below.
[2]:
ansatz.draw()
[2]:
┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ q_0: ┤ RY(θ[0]) ├─■─┤ RY(θ[2]) ├─■─┤ RY(θ[4]) ├─■─┤ RY(θ[6]) ├ ├──────────┤ │ ├──────────┤ │ ├──────────┤ │ ├──────────┤ q_1: ┤ RY(θ[1]) ├─■─┤ RY(θ[3]) ├─■─┤ RY(θ[5]) ├─■─┤ RY(θ[7]) ├ └──────────┘ └──────────┘ └──────────┘ └──────────┘
But more is needed before we can run the algorithm so let’s get to that next.
How to run an algorithm?¶
In order to run an algorithm we need to have backend, a simulator or real device, on which the circuits that comprise the algorithm can be run. So for example we can use the statevector_simulator
from the BasicAer provider.
[3]:
from qiskit import BasicAer
backend = BasicAer.get_backend('statevector_simulator')
Now a backend on its own does not have information on how you might want to run the circuits etc. For example how many shots, do you want a noise model, even options around transpiling the circuits. For this Qiskit Aqua has a QuantumInstance which is provided both the backend as well as various settings around the circuit processing and execution so for instance:
[4]:
from qiskit.aqua import QuantumInstance
backend = BasicAer.get_backend('qasm_simulator')
quantum_instance = QuantumInstance(backend=backend, shots=800, seed_simulator=99)
/home/computertreker/git/qiskit/qiskit-dup/.tox/docs/lib/python3.7/site-packages/qiskit/aqua/quantum_instance.py:137: DeprecationWarning: The class qiskit.aqua.QuantumInstance is deprecated. It was moved/refactored to qiskit.utils.QuantumInstance (pip install qiskit-terra). For more information see <https://github.com/Qiskit/qiskit-aqua/blob/master/README.md#migration-guide>
'qiskit-terra')
Note: if you provide the backend directly then internally a QuantumInstance will be created from it, with default settings, so at all times the algorithms are working through a QuantumInstance.
So now we would be able to call the run() method, which is common to all algorithms and returns a result specific for the algorithm. In this case since VQE is a MinimumEigensolver we could use the compute_mininum_eigenvalue() method. The latter is the interface of choice for the application modules, such as Chemistry and Optimization, in order that they can work interchangeably with any algorithm within the specific category.
A complete working example¶
Let’s put what we have learned from above together and create a complete working example. VQE will find the minimum eigenvalue, i.e. minimum energy value of a Hamiltonian operator and hence we need such an operator for VQE to work with. Such an operator is given below. This was originally created by the Chemistry application module as the Hamiltonian for an H2 molecule at 0.735A interatomic distance. It’s a sum of Pauli terms as below, but for now I am not going to say anything further about it since the goal is to run the algorithm, but further information on operators can be found in other tutorials.
[5]:
from qiskit.aqua.operators import X, Z, I
H2_op = (-1.052373245772859 * I ^ I) + \
(0.39793742484318045 * I ^ Z) + \
(-0.39793742484318045 * Z ^ I) + \
(-0.01128010425623538 * Z ^ Z) + \
(0.18093119978423156 * X ^ X)
/home/computertreker/git/qiskit/qiskit-dup/.tox/docs/lib/python3.7/site-packages/qiskit/aqua/operators/operator_base.py:46: DeprecationWarning: The package qiskit.aqua.operators is deprecated. It was moved/refactored to qiskit.opflow (pip install qiskit-terra). For more information see <https://github.com/Qiskit/qiskit-aqua/blob/master/README.md#migration-guide>
warn_package('aqua.operators', 'qiskit.opflow', 'qiskit-terra')
So let’s build a VQE instance passing the operator, and a backend using a QuantumInstance, to the constructor. Now VQE does have setters so the operator and backend can also be passed later. Setting them later can be useful when creating an algorithm without this problem specific information and then later using it, say with the chemistry application module, which would create the operator for the specific chemistry problem being solved.
Note: In order that you can run this notebook and see the exact same output the random number generator used throughout Aqua in aqua_globals, as well as the transpiler and simulator, via the QuantumInstance, are seeded. You do not have to do this but if want to be able to reproduce the exact same outcome each time then this is how it’s done.
So let’s run VQE and print the result object it returns.
[6]:
from qiskit.aqua import aqua_globals
seed = 50
aqua_globals.random_seed = seed
qi = QuantumInstance(BasicAer.get_backend('statevector_simulator'), seed_transpiler=seed, seed_simulator=seed)
ansatz = TwoLocal(rotation_blocks='ry', entanglement_blocks='cz')
slsqp = SLSQP(maxiter=1000)
vqe = VQE(operator=H2_op, var_form=ansatz, optimizer=slsqp, quantum_instance=qi)
result = vqe.run()
import pprint
pp = pprint.PrettyPrinter(indent=4)
pp.pprint(result)
/home/computertreker/git/qiskit/qiskit-dup/.tox/docs/lib/python3.7/site-packages/ipykernel_launcher.py:3: DeprecationWarning: The variable qiskit.aqua.aqua_globals is deprecated. It was moved/refactored to qiskit.utils.algorithm_globals (pip install qiskit-terra). For more information see <https://github.com/Qiskit/qiskit-aqua/blob/master/README.md#migration-guide>
This is separate from the ipykernel package so we can avoid doing imports until
{ 'cost_function_evals': 65,
'eigenstate': array([ 9.55737580e-05-2.35760296e-17j, -9.93766274e-01+1.00398655e-16j,
1.11483552e-01-2.13516261e-16j, 1.77193337e-05-9.93955634e-17j]),
'eigenvalue': (-1.8572750175550534+0j),
'optimal_parameters': { ParameterVectorElement(θ[5]): 1.568326023314705,
ParameterVectorElement(θ[6]): -4.717618242803465,
ParameterVectorElement(θ[7]): 0.36020722103416913,
ParameterVectorElement(θ[0]): 4.296520482689243,
ParameterVectorElement(θ[1]): 4.426962145171391,
ParameterVectorElement(θ[2]): 0.5470754478159714,
ParameterVectorElement(θ[3]): 6.092947716093812,
ParameterVectorElement(θ[4]): -2.5983257657192453},
'optimal_point': array([ 4.29652048, 4.42696215, 0.54707545, 6.09294772, -2.59832577,
1.56832602, -4.71761824, 0.36020722]),
'optimal_value': -1.8572750175550534,
'optimizer_evals': 65,
'optimizer_time': 0.3101050853729248}
From the above result we can see it took the optimizer 72
evaluations of parameter values until it found the minimum eigenvalue of -1.85727
which is the electronic ground state energy of the given H2 molecule. The optimal parameters of the ansatz can also be seen which are the values that were in the ansatz at the minimum value.
Using VQE as a MinimumEigensolver¶
To close off let’s use the MinimumEigensolver interface and also create a VQE instance without supplying either the operator or QuantumInstance. We later set the QuantumInstance and finally pass the operator on the compute_minimum_eigenvalue
method (though we could have passed it in earlier via the setter instead, as long as by the time VQE runs it has an operator to work on).
[7]:
aqua_globals.random_seed = seed
qi = QuantumInstance(BasicAer.get_backend('statevector_simulator'), seed_transpiler=seed, seed_simulator=seed)
ansatz = TwoLocal(rotation_blocks='ry', entanglement_blocks='cz')
slsqp = SLSQP(maxiter=1000)
vqe = VQE(var_form=ansatz, optimizer=slsqp)
vqe.quantum_instance = qi
result = vqe.compute_minimum_eigenvalue(operator=H2_op)
pp.pprint(result)
{ 'cost_function_evals': 65,
'eigenstate': array([ 9.55737580e-05-2.35760296e-17j, -9.93766274e-01+1.00398655e-16j,
1.11483552e-01-2.13516261e-16j, 1.77193337e-05-9.93955634e-17j]),
'eigenvalue': (-1.8572750175550534+0j),
'optimal_parameters': { ParameterVectorElement(θ[0]): 4.296520482689243,
ParameterVectorElement(θ[1]): 4.426962145171391,
ParameterVectorElement(θ[3]): 6.092947716093812,
ParameterVectorElement(θ[2]): 0.5470754478159714,
ParameterVectorElement(θ[4]): -2.5983257657192453,
ParameterVectorElement(θ[6]): -4.717618242803465,
ParameterVectorElement(θ[7]): 0.36020722103416913,
ParameterVectorElement(θ[5]): 1.568326023314705},
'optimal_point': array([ 4.29652048, 4.42696215, 0.54707545, 6.09294772, -2.59832577,
1.56832602, -4.71761824, 0.36020722]),
'optimal_value': -1.8572750175550534,
'optimizer_evals': 65,
'optimizer_time': 0.10224723815917969}
As the identical seeding was used as the prior example the result can be seen to be the same.
This concludes this introduction to algorithms in Qiskit. Please check out the other algorithm tutorials in this series for both broader as well as more in depth coverage of the algorithms.
[8]:
import qiskit.tools.jupyter
%qiskit_version_table
%qiskit_copyright
Version Information
Qiskit Software | Version |
---|---|
Qiskit | 0.25.4 |
Terra | 0.17.2 |
Aer | 0.8.2 |
Ignis | 0.6.0 |
Aqua | 0.9.1 |
IBM Q Provider | 0.12.3 |
System information | |
Python | 3.7.7 (default, Apr 22 2020, 19:15:10) [GCC 9.3.0] |
OS | Linux |
CPUs | 32 |
Memory (Gb) | 125.71903228759766 |
Tue May 25 16:08:48 2021 EDT |
This code is a part of Qiskit
© Copyright IBM 2017, 2021.
This code is licensed under the Apache License, Version 2.0. You may
obtain a copy of this license in the LICENSE.txt file in the root directory
of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
Any modifications or derivative works of this code must retain this
copyright notice, and modified files need to carry a notice indicating
that they have been altered from the originals.
[ ]: