Skip to main contentIBM Quantum Documentation
You are viewing the API reference for an old version of Qiskit SDK. Switch to latest version

QAOA

class qiskit.algorithms.QAOA(optimizer=None, reps=1, initial_state=None, mixer=None, initial_point=None, gradient=None, expectation=None, include_custom=False, max_evals_grouped=1, callback=None, quantum_instance=None)

GitHub(opens in a new tab)

Bases: VQE

Deprecated: Quantum Approximate Optimization Algorithm.

The QAOA class has been superseded by the qiskit.algorithms.minimum_eigensolvers.QAOA class. This class will be deprecated in a future release and subsequently removed after that.

QAOA(opens in a new tab) is a well-known algorithm for finding approximate solutions to combinatorial-optimization problems.

The QAOA implementation directly extends VQE and inherits VQE’s optimization structure. However, unlike VQE, which can be configured with arbitrary ansatzes, QAOA uses its own fine-tuned ansatz, which comprises pp parameterized global xx rotations and pp different parameterizations of the problem hamiltonian. QAOA is thus principally configured by the single integer parameter, p, which dictates the depth of the ansatz, and thus affects the approximation quality.

An optional array of 2p2p parameter values, as the initial_point, may be provided as the starting beta and gamma parameters (as identically named in the original QAOA paper(opens in a new tab)) for the QAOA ansatz.

An operator or a parameterized quantum circuit may optionally also be provided as a custom mixer Hamiltonian. This allows, as discussed in this paper(opens in a new tab) for quantum annealing, and in this paper(opens in a new tab) for QAOA, to run constrained optimization problems where the mixer constrains the evolution to a feasible subspace of the full Hilbert space.

Deprecated since version 0.24.0

The class qiskit.algorithms.minimum_eigen_solvers.qaoa.QAOA is deprecated as of qiskit-terra 0.24.0. It will be removed no earlier than 3 months after the release date. Instead, use the class qiskit.algorithms.minimum_eigensolvers.QAOA. See https://qisk.it/algo_migration(opens in a new tab) for a migration guide.

Parameters

  • optimizer (Optimizer |Minimizer | None) – A classical optimizer, see also VQE for more details on the possible types.
  • reps (int(opens in a new tab)) – the integer parameter pp as specified in https://arxiv.org/abs/1411.4028(opens in a new tab), Has a minimum valid value of 1.
  • initial_state (QuantumCircuit | None) – An optional initial state to prepend the QAOA circuit with
  • mixer (QuantumCircuit |OperatorBase) – the mixer Hamiltonian to evolve with or a custom quantum circuit. Allows support of optimizations in constrained subspaces as per https://arxiv.org/abs/1709.03489(opens in a new tab) as well as warm-starting the optimization as introduced in http://arxiv.org/abs/2009.10095(opens in a new tab).
  • initial_point (np.ndarray | None) – An optional initial point (i.e. initial parameter values) for the optimizer. If None then it will simply compute a random one.
  • gradient (GradientBase | Callable[[np.ndarray |list(opens in a new tab)], list(opens in a new tab)] | None) – An optional gradient operator respectively a gradient function used for optimization.
  • expectation (ExpectationBase | None) – The Expectation converter for taking the average value of the Observable over the ansatz state function. When None (the default) an ExpectationFactory is used to select an appropriate expectation based on the operator and backend. When using Aer qasm_simulator backend, with paulis, it is however much faster to leverage custom Aer function for the computation but, although VQE performs much faster with it, the outcome is ideal, with no shot noise, like using a state vector simulator. If you are just looking for the quickest performance when choosing Aer qasm_simulator and the lack of shot noise is not an issue then set include_custom parameter here to True (defaults to False).
  • include_custom (bool(opens in a new tab)) – When expectation parameter here is None setting this to True will allow the factory to include the custom Aer pauli expectation.
  • max_evals_grouped (int(opens in a new tab)) – Max number of evaluations performed simultaneously. Signals the given optimizer that more than one set of parameters can be supplied so that potentially the expectation values can be computed in parallel. Typically this is possible when a finite difference gradient is used by the optimizer such that multiple points to compute the gradient can be passed and if computed in parallel improve overall execution time. Ignored if a gradient operator or function is given.
  • callback (Callable[[int(opens in a new tab), np.ndarray, float(opens in a new tab), float(opens in a new tab)], None] | None) – a callback that can access the intermediate data during the optimization. Four parameter values are passed to the callback as follows during each evaluation by the optimizer for its current set of parameters as it works towards the minimum. These are: the evaluation count, the optimizer parameters for the ansatz, the evaluated mean and the evaluated standard deviation.
  • quantum_instance (QuantumInstance |Backend | None) – Quantum Instance or Backend

Attributes

ansatz

Returns the ansatz.

callback

Returns callback

expectation

The expectation value algorithm used to construct the expectation measurement from the observable.

gradient

Returns the gradient.

include_custom

Returns include_custom

initial_point

Returns initial point

initial_state

Returns: Returns the initial state.

max_evals_grouped

Returns max_evals_grouped

mixer

Returns: Returns the mixer.

optimizer

Returns optimizer

quantum_instance

Returns quantum instance.

setting

Prepare the setting of VQE as a string.


Methods

compute_minimum_eigenvalue

compute_minimum_eigenvalue(operator, aux_operators=None)

Computes minimum eigenvalue. Operator and aux_operators can be supplied here and if not None will override any already set into algorithm so it can be reused with different operators. While an operator is required by algorithms, aux_operators are optional. To ‘remove’ a previous aux_operators array use an empty list here.

Parameters

  • operator (OperatorBase) – Qubit operator of the Observable
  • aux_operators (ListOrDict[OperatorBase] | None) – Optional list of auxiliary operators to be evaluated with the eigenstate of the minimum eigenvalue main result and their expectation values returned. For instance in chemistry these can be dipole operators, total particle count operators so we can get values for these at the ground state.

Returns

MinimumEigensolverResult

Return type

MinimumEigensolverResult

construct_circuit

construct_circuit(parameter, operator)

Return the circuits used to compute the expectation value.

Parameters

Returns

A list of the circuits used to compute the expectation value.

Return type

list(opens in a new tab)[QuantumCircuit]

construct_expectation

construct_expectation(parameter, operator, return_expectation=False)

Generate the ansatz circuit and expectation value measurement, and return their runnable composition.

Parameters

Returns

The Operator equalling the measurement of the ansatz StateFn by the Observable’s expectation StateFn, and, optionally, the expectation converter.

Raises

  • AlgorithmError – If no operator has been provided.
  • AlgorithmError – If no expectation is passed and None could be inferred via the ExpectationFactory.

Return type

OperatorBase | tuple(opens in a new tab)[OperatorBase, ExpectationBase]

get_energy_evaluation

get_energy_evaluation(operator, return_expectation=False)

Returns a function handle to evaluates the energy at given parameters for the ansatz.

This is the objective function to be passed to the optimizer that is used for evaluation.

Parameters

  • operator (OperatorBase) – The operator whose energy to evaluate.
  • return_expectation (bool(opens in a new tab)) – If True, return the ExpectationBase expectation converter used in the construction of the expectation value. Useful e.g. to evaluate other operators with the same expectation value converter.

Returns

Energy of the hamiltonian of each parameter, and, optionally, the expectation converter.

Raises

RuntimeError(opens in a new tab) – If the circuit is not parameterized (i.e. has 0 free parameters).

Return type

Callable[[np.ndarray], float(opens in a new tab) | list(opens in a new tab)[float(opens in a new tab)]] | tuple(opens in a new tab)[Callable[[np.ndarray], float(opens in a new tab) | list(opens in a new tab)[float(opens in a new tab)]], ExpectationBase]

print_settings()

Preparing the setting of VQE into a string.

Returns

the formatted setting of VQE

Return type

str(opens in a new tab)

supports_aux_operators

classmethod supports_aux_operators()

Whether computing the expectation value of auxiliary operators is supported.

If the minimum eigensolver computes an eigenstate of the main operator then it can compute the expectation value of the aux_operators for that state. Otherwise they will be ignored.

Returns

True if aux_operator expectations can be evaluated, False otherwise

Return type

bool(opens in a new tab)

Was this page helpful?
Report a bug or request content on GitHub.