qiskit.aqua.algorithms.Grover
class Grover(oracle, good_state=None, state_preparation=None, iterations=1, sample_from_iterations=False, post_processing=None, grover_operator=None, quantum_instance=None, init_state=None, incremental=False, num_iterations=None, lam=None, rotation_counts=None, mct_mode=None)
Grover’s Search algorithm.
Grover’s Search [1, 2] is a well known quantum algorithm for that can be used for searching through unstructured collections of records for particular targets with quadratic speedup compared to classical algorithms.
Given a set of elements and a boolean function , the goal of an unstructured-search problem is to find an element such that .
The search is called unstructured because there are no guarantees as to how the database is ordered. On a sorted database, for instance, one could perform binary search to find an element in worst-case time. Instead, in an unstructured-search problem, there is no prior knowledge about the contents of the database. With classical circuits, there is no alternative but to perform a linear number of queries to find the target element. Conversely, Grover’s Search algorithm allows to solve the unstructured-search problem on a quantum computer in queries.
To carry out this search a so-called oracle is required, that flags a good element/state. The action of the oracle is
i.e. it flips the phase of the state if is a hit. The details of how works are unimportant to the algorithm; Grover’s search algorithm treats the oracle as a black box.
This class supports oracles in form of QuantumCircuit
or Oracle
. For example the LogicalExpressionOracle
can take as input a SAT problem in DIMACS CNF format and be used with Grover algorithm to find a satisfiable assignment.
With oracle at hand, Grover’s Search constructs the Grover operator to amplify the amplitudes of the good states:
where flips the phase of the all-zero state and acts as identity on all other states. Sometimes the first three operands are summarized as diffusion operator, which implements a reflection over the equal superposition state.
If the number of solutions is known, we can calculate how often should be applied to find a solution with very high probability, see the method optimal_num_iterations. If the number of solutions is unknown, the algorithm tries different powers of Grover’s operator, see the iterations argument, and after each iteration checks if a good state has been measured using good_state.
The generalization of Grover’s Search, Quantum Amplitude Amplification [3] uses a modified version of where the diffusion operator does not reflect about the equal superposition state, but another state specified via an operator :
For more information, see the GroverOperator
in the circuit library.
References
[1]: L. K. Grover (1996), A fast quantum mechanical algorithm for database search,
[2]: I. Chuang & M. Nielsen, Quantum Computation and Quantum Information,
Cambridge: Cambridge University Press, 2000. Chapter 6.1.2.
[3]: Brassard, G., Hoyer, P., Mosca, M., & Tapp, A. (2000).
Quantum Amplitude Amplification and Estimation. arXiv:quant-ph/0005055.
Parameters
- oracle (
Union
[Oracle
,QuantumCircuit
,Statevector
]) – The oracle to flip the phase of good states, . - good_state (
Union
[Callable
[[str
],bool
],List
[str
],List
[int
],Statevector
,None
]) – A callable to check if a given measurement corresponds to a good state. For convenience, a list of bitstrings, a list of integer or statevector can be passed instead of a function. If the input is a list of bitstrings, each bitstrings in the list represents a good state. If the input is a list of integer, each integer represent the index of the good state to be . If it is aStatevector
, it represents a superposition of all good states. - state_preparation (
Optional
[QuantumCircuit
]) – The state preparation . If None then Grover’s Search by default uses uniform superposition. - iterations (
Union
[int
,List
[int
]]) – Specify the number of iterations/power of Grover’s operator to be checked. It the number of solutions is known, this should be an integer specifying the optimal number of iterations (seeoptimal_num_iterations
). Alternatively, this can be a list of powers to check. - sample_from_iterations (
bool
) – If True, instead of taking the values initerations
as powers of the Grover operator, a random integer sample between 0 and smaller value than the iteration is used as a power, see [1], Section 4. - post_processing (
Optional
[Callable
[[List
[int
]],List
[int
]]]) – An optional post processing applied to the top measurement. Can be used e.g. to convert from the bit-representation of the measurement [1, 0, 1] to a DIMACS CNF format [1, -2, 3]. - grover_operator (
Optional
[QuantumCircuit
]) – A circuit implementing the Grover operator . If None, the operator is constructed automatically using theGroverOperator
from the circuit library. - quantum_instance (
Union
[QuantumInstance
,Backend
,BaseBackend
,None
]) – A Quantum Instance or Backend to run the circuits. - init_state (
Optional
[InitialState
]) – DEPRECATED, usestate_preparation
instead. An optional initial quantum state. If None (default) then Grover’s Search by default uses uniform superposition to initialize its quantum state. However, an initial state may be supplied, if useful, for example, if the user has some prior knowledge regarding where the search target(s) might be located. - incremental (
bool
) – DEPRECATED, useiterations
instead. Whether to use incremental search mode (True) or not (False). Supplied num_iterations is ignored when True and instead the search task will be carried out in successive rounds, using circuits built with incrementally higher number of iterations for the repetition of the amplitude amplification until a target is found or the maximal number ( being the total number of elements in the set from the oracle used) of iterations is reached. The implementation follows Section 4 of [2]. - num_iterations (
Optional
[int
]) – DEPRECATED, useiterations
instead. How many times the marking and reflection phase sub-circuit is repeated to amplify the amplitude(s) of the target(s). Has a minimum value of 1. - lam (
Optional
[float
]) – DEPRECATED, useiterations
instead. For incremental search mode, the maximum number of repetition of amplitude amplification increases by factor lam in every round, . If this parameter is not set, the default value lam = 1.34 is used, which is proved to be optimal [1]. - rotation_counts (
Optional
[List
[int
]]) – DEPRECATED, useiterations
instead. For incremental mode, if rotation_counts is defined, parameter lam is ignored. rotation_counts is the list of integers that defines the number of repetition of amplitude amplification for each round. - mct_mode (
Optional
[str
]) – DEPRECATED, pass a customgrover_operator
instead. Multi-Control Toffoli mode (‘basic’ | ‘basic-dirty-ancilla’ | ‘advanced’ | ‘noancilla’)
Raises
- TypeError – If
init_state
is of unsupported type or is of typeInitialState` but the oracle is not of type ``Oracle
. - AquaError – evaluate_classically() missing from the input oracle
- TypeError – If
oracle
is of unsupported type.
References
[1]: Boyer et al., Tight bounds on quantum searching
https://arxiv.org/abs/quant-ph/9605034
__init__
__init__(oracle, good_state=None, state_preparation=None, iterations=1, sample_from_iterations=False, post_processing=None, grover_operator=None, quantum_instance=None, init_state=None, incremental=False, num_iterations=None, lam=None, rotation_counts=None, mct_mode=None)
Parameters
- oracle (
Union
[Oracle
,QuantumCircuit
,Statevector
]) – The oracle to flip the phase of good states, . - good_state (
Union
[Callable
[[str
],bool
],List
[str
],List
[int
],Statevector
,None
]) – A callable to check if a given measurement corresponds to a good state. For convenience, a list of bitstrings, a list of integer or statevector can be passed instead of a function. If the input is a list of bitstrings, each bitstrings in the list represents a good state. If the input is a list of integer, each integer represent the index of the good state to be . If it is aStatevector
, it represents a superposition of all good states. - state_preparation (
Optional
[QuantumCircuit
]) – The state preparation . If None then Grover’s Search by default uses uniform superposition. - iterations (
Union
[int
,List
[int
]]) – Specify the number of iterations/power of Grover’s operator to be checked. It the number of solutions is known, this should be an integer specifying the optimal number of iterations (seeoptimal_num_iterations
). Alternatively, this can be a list of powers to check. - sample_from_iterations (
bool
) – If True, instead of taking the values initerations
as powers of the Grover operator, a random integer sample between 0 and smaller value than the iteration is used as a power, see [1], Section 4. - post_processing (
Optional
[Callable
[[List
[int
]],List
[int
]]]) – An optional post processing applied to the top measurement. Can be used e.g. to convert from the bit-representation of the measurement [1, 0, 1] to a DIMACS CNF format [1, -2, 3]. - grover_operator (
Optional
[QuantumCircuit
]) – A circuit implementing the Grover operator . If None, the operator is constructed automatically using theGroverOperator
from the circuit library. - quantum_instance (
Union
[QuantumInstance
,Backend
,BaseBackend
,None
]) – A Quantum Instance or Backend to run the circuits. - init_state (
Optional
[InitialState
]) – DEPRECATED, usestate_preparation
instead. An optional initial quantum state. If None (default) then Grover’s Search by default uses uniform superposition to initialize its quantum state. However, an initial state may be supplied, if useful, for example, if the user has some prior knowledge regarding where the search target(s) might be located. - incremental (
bool
) – DEPRECATED, useiterations
instead. Whether to use incremental search mode (True) or not (False). Supplied num_iterations is ignored when True and instead the search task will be carried out in successive rounds, using circuits built with incrementally higher number of iterations for the repetition of the amplitude amplification until a target is found or the maximal number ( being the total number of elements in the set from the oracle used) of iterations is reached. The implementation follows Section 4 of [2]. - num_iterations (
Optional
[int
]) – DEPRECATED, useiterations
instead. How many times the marking and reflection phase sub-circuit is repeated to amplify the amplitude(s) of the target(s). Has a minimum value of 1. - lam (
Optional
[float
]) – DEPRECATED, useiterations
instead. For incremental search mode, the maximum number of repetition of amplitude amplification increases by factor lam in every round, . If this parameter is not set, the default value lam = 1.34 is used, which is proved to be optimal [1]. - rotation_counts (
Optional
[List
[int
]]) – DEPRECATED, useiterations
instead. For incremental mode, if rotation_counts is defined, parameter lam is ignored. rotation_counts is the list of integers that defines the number of repetition of amplitude amplification for each round. - mct_mode (
Optional
[str
]) – DEPRECATED, pass a customgrover_operator
instead. Multi-Control Toffoli mode (‘basic’ | ‘basic-dirty-ancilla’ | ‘advanced’ | ‘noancilla’)
Raises
- TypeError – If
init_state
is of unsupported type or is of typeInitialState` but the oracle is not of type ``Oracle
. - AquaError – evaluate_classically() missing from the input oracle
- TypeError – If
oracle
is of unsupported type.
References
[1]: Boyer et al., Tight bounds on quantum searching
Methods
__init__ (oracle[, good_state, …]) | type oracleUnion [Oracle , QuantumCircuit , Statevector ] |
construct_circuit ([power, measurement]) | Construct the circuit for Grover’s algorithm with power Grover operators. |
is_good_state (bitstr) | Check whether a provided bitstring is a good state or not. |
optimal_num_iterations (num_solutions, num_qubits) | Return the optimal number of iterations, if the number of solutions is known. |
post_processing (measurement) | Do the post-processing to the measurement result |
run ([quantum_instance]) | Execute the algorithm with selected backend. |
set_backend (backend, **kwargs) | Sets backend with configuration. |
Attributes
backend | Returns backend. |
grover_operator | Returns grover_operator. |
quantum_instance | Returns quantum instance. |
random | Return a numpy random. |
backend
Returns backend.
Return type
Union
[Backend
, BaseBackend
]
construct_circuit
construct_circuit(power=None, measurement=False)
Construct the circuit for Grover’s algorithm with power
Grover operators.
Parameters
- power (
Optional
[int
]) – The number of times the Grover operator is repeated. If None, this argument is set to the first item initerations
. - measurement (
bool
) – Boolean flag to indicate if measurement should be included in the circuit.
Returns
the QuantumCircuit object for the constructed circuit
Return type
grover_operator
Returns grover_operator.
Return type
QuantumCircuit
is_good_state
is_good_state(bitstr)
Check whether a provided bitstring is a good state or not.
Parameters
bitstr (str
) – The measurement as bitstring.
Return type
bool
Returns
True if the measurement is a good state, False otherwise.
optimal_num_iterations
static optimal_num_iterations(num_solutions, num_qubits)
Return the optimal number of iterations, if the number of solutions is known.
Parameters
- num_solutions (
int
) – The number of solutions. - num_qubits (
int
) – The number of qubits used to encode the states.
Return type
int
Returns
The optimal number of iterations for Grover’s algorithm to succeed.
post_processing
post_processing(measurement)
Do the post-processing to the measurement result
Parameters
measurement (List
[int
]) – The measurement as list of int.
Return type
List
[int
]
Returns
Do the post-processing based on the post_processing argument. If the post_processing argument is None and the Oracle class is used as its oracle, oracle.evaluate_classically is used as the post_processing. Otherwise, just return the input bitstr
quantum_instance
Returns quantum instance.
Return type
Optional
[QuantumInstance
]
random
Return a numpy random.
run
run(quantum_instance=None, **kwargs)
Execute the algorithm with selected backend.
Parameters
- quantum_instance (
Union
[QuantumInstance
,Backend
,BaseBackend
,None
]) – the experimental setting. - kwargs (dict) – kwargs
Returns
results of an algorithm.
Return type
dict
Raises
AquaError – If a quantum instance or backend has not been provided
set_backend
set_backend(backend, **kwargs)
Sets backend with configuration.
Return type
None