qat.opt.QUBO
- class qat.opt.QUBO(Q, offset_q=0, **kwargs)
Class representing Quadratic Unconstrained Binary Optimization (QUBO) problems.
The class allows for the representation of a problem as QUBO - by providing with a symmetric \(Q\) matrix and a QUBO offset energy \(E_Q\), both of which coming from the respective Hamiltonian encoding,
\[H = - x^T Q x - E_Q\]where \(x\) is the vector of binary values \(\{0,1\}\) we look for, such that \(H\) is minimum.
The class can also translate from a QUBO problem to an Ising problem via
to_ising()
by returning an Ising object.QUBO problems can be translated to a
CombinatorialProblem
object viato_combinatorial_problem()
.This class also inherits from the
CircuitGenerator
class which allows to construct QAOA-Ansätze.- Parameters
Q (2D numpy array) – a symmetric array representing the \(Q\) matrix from the Hamiltonian of the problem
offset_q (optional, double) – the value of the QUBO offset energy in the Hamiltonian of the problem
- aqo_job(tmax=None, mixing=None, **kwargs)
Generates an Adiabatic Quantum Optimization (AQO) job performing a linear interpolation between an initial mixing Hamiltonian and the problem’s Hamiltonian.
- classmethod decode_rydberg(job, result)
Returns the MWIS simulation result of the input graph.
- static decode_rydberg_meta_data(meta_data: dict, result)
Returns the MWIS simulation result of the input graph.
- get_best_parameters()
This method returns a dictionary with the best found parameters (after benchmarking) for simulated quantum annealing (SQA) of the respective QUBO problem. SQA is available in QLM, but the temperature parameters temp_max and temp_min could also be used for simulated annealing (SA), available in myQLM.
The method should be called from one of the child problem classes (e.g. GraphColouring, VertexCover, etc.) and not directly from the parent QUBO class as this will raise an exception.
- get_observable(obs_type)
Returns an ising- or a terms-type of
Observable
from theQUBO
problem. If a ‘terms’ Observable is chosen, the QUBO problem will first be translated to aCombinatorialProblem
.- Parameters
obs_type (string) –
The type of
Observable
to be returned:'ising'
or'terms'
.'ising'
observables can be used to create aSchedule
(by also proving gamma_t ifSQAQPU
in the full Qaptiva appliance will be used) and consecutively produce aJob
to be sent for Simulated Quantum Annealing.'terms'
observables can be used for gate-based quantum computations with aCircuit
or analog quantum computations, also with aSchedule
.
- Returns
an Ising Observable or an Observable with terms representing the problem
- Return type
- get_q_and_offset()
This method returns the \(Q\) matrix and QUBO energy offset, which define the QUBO object.
- Returns
2-element tuple containing
Q (2D numpy array) - a symmetric array representing the \(Q\) matrix from the Hamiltonian of the problem
offset_q (double) - the value of the QUBO offset energy in the Hamiltonian of the problem
- property q_matrix
The Q-matrix of the QUBO Hamiltonian as a symmetric numpy 2D array
- qaoa_job(depth, cnots=True, strategy='coloring', to_circ_args=None, **kwargs)
Generates a QAOA Ansatz Job for gate-based computations using the cost observable returned by the abstract method
get_observable
.Warning
When setting the cnots option to False, the circuit might make use of generalized many-qubits Z rotations. In that case, you might want to instantiate your variational plugins using a gate set that contains definition of these gates. If not, some matrices in the circuit structure will be missing and some QPUs may not be able to handle the circuit.
The following piece of code should allow you to link the correct gate set to a variational plugin:
from qat.plugins import ScipyMinimizePlugin from qat.vsolve.ansatz import get_qaoa_gate_set # This plugin will no be able to bind variables inside a # job generated with cnot set to False! my_plugin = ScipyMinimizePlugin() # This plugin can now be used with job generated with the # cnots option sets to False! my_plugin = ScipyMinimizePlugin(gate_set=get_qaoa_gate_set())
- Parameters
depth (int) – the depth of the Ansatz
strategy (str) – the strategy to adopt to generate the circuit. Possible strategies are “default” or “coloring”. The “coloring” strategy uses a greedy coloring heuristics to try to optimize the overall depth of the Ansatz. Default is “default” which synthesize the circuit without optimizing the term ordering.
cnots (optional, bool) – If set to True the Ansatz will only use CNOT gates. If set to False, some abstract gates will be used to generate collective pauli rotations, resulting in a lower gate count. Defaults to True.
**kwargs – optional arguments that will be transfered to the job’s constructor (e.g nbshots, etc).
- Returns
a Qaptiva job, ready to run
- Return type
- ryd_job(optimize=True, time_budget_sec=3, tmax=10, **kwargs)
Returns a ryd-type job for the QUBO problem.
- Parameters
optimize (bool) – if True, the node overhead will be reduced.
time_budget_sec (float) – time budget allocated for the core part of the optimization function.
tmax (float) – time duration of the adiabatic simulation.
- Returns
a ryd-type job
- Return type
- sqa_job(gamma_t=None, tmax=1.0, **kwargs)
Returns a sqa-type of Job for the problem - ready to run on a QPU for simulated annealing (SA) or simulated quantum anealing (SQA). The second one comes in the full Qaptiva. The optional
gamma_t
argument is only used for SQA.- Parameters
tmax (float, optional) – time duration of the annealing. Default is 1.
gamma_t (
ArithExpression
, optional) – a function specifying the time dependence of Gamma. It should be produced using the variable ‘t’ created by the classVariable
.
- Returns
a ready to run sqa-type of Job for the problem
- Return type
Note
For the supported NP problems, some well performing max and min Gamma (for a linearly decreasing gamma_t) have been found and could be accessed via the method
get_best_parameters
of the respective problem class.
- to_bqm()
Transforms a QUBO problem to DWave’s Binary Quadratic Model from the library
dimod
.- Returns
a BinaryQuadraticModel object
- Return type
BinaryQuadraticModel
- to_combinatorial_problem()
Translates the QUBO problem into a combinatorial problem.
- Returns
a combinatorial problem instance
- Return type
- to_ising()
Translates the QUBO problem into an Ising problem over spins.
- Returns
an Ising instance
- Return type
- to_job(job_type, *args, **kwargs)
A general method allowing the creation of an aqo-, qaoa- or sqa-type of Job from a problem description - ready to run on the respective QPU.
'aqo'
is for Adiabatic Quantum Optimization (with analog QPUs). Internally, methodaqo_job()
is used to generate the job.'qaoa'
is for using the Quantum Approximate Optimization Algorithm (with gate-based QPUs). Internally, methodqaoa_job()
is used to generate the job.'sqa'
is for Simulated Quantum Annealing to be used with SQAQPU in Qaptiva, also being able to be run withSimulatedAnnealing
(SA) for myQLM. Internally, methodsqa_job()
is used to generate the job.'ryd'
is for Rydberg. Internally, methodryd_job()
is used to generate the job.
- Parameters
job_type (string) – The type of job to be returned:
'aqo'
,'qaoa'
,'sqa'
, or'ryd'
.*args – additional arguments passed to
aqo_job()
,qaoa_job()
,sqa_job()
, orryd_job()
.**kwargs – additional keyword arguments passed to
aqo_job()
,qaoa_job()
,sqa_job()
, orryd_job()
.
- Returns
a ready to run Job for the respective type of problem
- Return type