qml.pulse.ParametrizedEvolution¶
- class ParametrizedEvolution(H, params=None, t=None, return_intermediate=False, complementary=False, id=None, **odeint_kwargs)[source]¶
Bases:
pennylane.operation.Operation
Parametrized evolution gate, created by passing a
ParametrizedHamiltonian
to theevolve()
functionFor a time-dependent Hamiltonian of the form
\[H(\{v_j\}, t) = H_\text{drift} + \sum_j f_j(v_j, t) H_j\]it implements the corresponding time-evolution operator \(U(t_0, t_1)\), which is the solution to the time-dependent Schrodinger equation.
\[\frac{d}{dt}U(t) = -i H(\{v_j\}, t) U(t).\]Under the hood, it is using a numerical ordinary differential equation (ODE) solver. It requires
jax
, and will not work with other machine learning frameworks typically encountered in PennyLane.- Parameters
H (ParametrizedHamiltonian) – Hamiltonian to evolve
params (Optional[list]) – trainable parameters, passed as list where each element corresponds to the parameters of a scalar-valued function of the Hamiltonian being evolved.
t (Union[float, List[float]]) – If a float, it corresponds to the duration of the evolution. If a list of floats, the ODE solver will use all the provided time values, and perform intermediate steps if necessary. It is recommended to just provide a start and end time unless matrices of the time evolution at intermediate times need to be computed. Note that such absolute times only have meaning within an instance of
ParametrizedEvolution
and will not affect other gates. To return the matrix at intermediate evolution times, activatereturn_intermediate
(see below).id (str or None) – id for the scalar product operator. Default is None.
- Keyword Arguments
atol (float, optional) – Absolute error tolerance for the ODE solver. Defaults to
1.4e-8
.rtol (float, optional) – Relative error tolerance for the ODE solver. The error is estimated from comparing a 4th and 5th order Runge-Kutta step in the Dopri5 algorithm. This error is guaranteed to stay below
tol = atol + rtol * abs(y)
through adaptive step size selection. Defaults to 1.4e-8.mxstep (int, optional) – maximum number of steps to take for each timepoint for the ODE solver. Defaults to
jnp.inf
.hmax (float, optional) – maximum step size allowed for the ODE solver. Defaults to
jnp.inf
.return_intermediate (bool) – Whether or not the
matrix
method returns all intermediate solutions of the time evolution at the times provided int = [t_0,...,t_f]
. IfFalse
(the default), only the matrix for the full time evolution is returned. IfTrue
, all solutions including the initial condition are returned; when used in a circuit, this results inParametrizedEvolution
being a broadcasted operation, see the usage details (“Computing intermediate time evolution”) below.complementary (bool) – Whether or not to compute the complementary time evolution when using
return_intermediate=True
(ignored otherwise). IfFalse
(the default), the usual solutions to the Schrodinger equation \(\{U(t_0, t_0), U(t_0, t_1),\dots, U(t_0, t_f)\}\) are computed, where \(t_i\) are the additional times provided int
. IfTrue
, the remaining time evolution to \(t_f\) is computed instead, returning \(\{U(t_0, t_f), U(t_1, t_f),\dots, U(t_{f-1}, t_f), U(t_f, t_f)\}\).dense (bool) – Whether the evolution should use dense matrices. Per default, this is decided by the number of wires, i.e.
dense = len(wires) < 3
.
Warning
The
ParametrizedHamiltonian
must be Hermitian at all times. This is not explicitly checked when creating aParametrizedEvolution
from theParametrizedHamiltonian
.Example
To create a
ParametrizedEvolution
, we first define aParametrizedHamiltonian
describing the system, and then pass it toevolve()
:from jax import numpy as jnp f1 = lambda p, t: jnp.sin(p * t) H = f1 * qml.Y(0) ev = qml.evolve(H)
The initial
ParametrizedEvolution
does not have set parameters, and so will not have a matrix defined. To obtain an Operator with a matrix, it must be passed parameters and a time interval:>>> qml.matrix(ev([1.2], t=[0, 4])) Array([[ 0.72454906+0.j, -0.6892243 +0.j], [ 0.6892243 +0.j, 0.72454906+0.j]], dtype=complex64)
The parameters can be updated by calling the
ParametrizedEvolution
again with different inputs.When calling the
ParametrizedEvolution
, keyword arguments can be passed to specify behaviour of the ODE solver.The
ParametrizedEvolution
can be implemented in a QNode:import jax jax.config.update("jax_enable_x64", True) dev = qml.device("default.qubit", wires=1) @jax.jit @qml.qnode(dev, interface="jax") def circuit(params): qml.evolve(H)(params, t=[0, 10]) return qml.expval(qml.Z(0))
>>> params = [1.2] >>> circuit(params) Array(0.96632722, dtype=float64)
>>> jax.grad(circuit)(params) [Array(2.35694829, dtype=float64)]
Note
In the example above, the decorator
@jax.jit
is used to compile this execution just-in-time. This means the first execution will typically take a little longer with the benefit that all following executions will be significantly faster, see the jax docs on jitting. JIT-compiling is optional, and one can remove the decorator when only single executions are of interest.Warning
The time argument
t
corresponds to the time window used to compute the scalar-valued functions present in theParametrizedHamiltonian
class. Consequently, executing twoParametrizedEvolution
operators using the same time window does not mean both operators are executed simultaneously, but rather that both evaluate their respective scalar-valued functions using the same time window. See Usage Details.Note
Using
return_intermediate
in a quantum circuit leads to broadcasted execution, which can lead to unintended additional computational cost. Also consider the usage details below.Usage Details
The parameters used when calling the
ParametrizedEvolution
are expected to have the same order as the functions used to define theParametrizedHamiltonian
. For example:def f1(p, t): return jnp.sin(p[0] * t**2) + p[1] def f2(p, t): return p * jnp.cos(t) H = 2 * qml.X(0) + f1 * qml.Y(0) + f2 * qml.Z(0) ev = qml.evolve(H)
>>> params = [[4.6, 2.3], 1.2] >>> qml.matrix(ev(params, t=0.5)) Array([[-0.18354285-0.26303384j, -0.7271658 -0.606923j ], [ 0.7271658 -0.606923j , -0.18354285+0.26303384j]], dtype=complex64)
Internally the solver is using
f1([4.6, 2.3], t)
andf2(1.2, t)
at each timestep when finding the matrix.In the case where we have defined two Hamiltonians,
H1
andH2
, and we want to find a time evolution where the two are driven simultaneously for some period of time, it is important that both are included in the same call ofevolve()
. For non-commuting operations, applyingqml.evolve(H1)(params, t=[0, 10])
followed byqml.evolve(H2)(params, t=[0, 10])
will not apply the two pulses simultaneously, despite the overlapping time window. Instead, it will executeH1
in the[0, 10]
time window, and then subsequently executeH2
using the same time window to calculate the evolution, but without taking into account how the time evolution ofH1
affects the evolution ofH2
and vice versa.Consider two non-commuting
ParametrizedHamiltonian
objects:from jax import numpy as jnp ops = [qml.X(0), qml.Y(1), qml.Z(2)] coeffs = [lambda p, t: p for _ in range(3)] H1 = qml.dot(coeffs, ops) # time-independent parametrized Hamiltonian ops = [qml.Z(0), qml.Y(1), qml.X(2)] coeffs = [lambda p, t: p * jnp.sin(t) for _ in range(3)] H2 = qml.dot(coeffs, ops) # time-dependent parametrized Hamiltonian
The evolutions of the
ParametrizedHamiltonian
can be used in a QNode.dev = qml.device("default.qubit", wires=3) @qml.qnode(dev, interface="jax") def circuit1(params): qml.evolve(H1)(params, t=[0, 10]) qml.evolve(H2)(params, t=[0, 10]) return qml.expval(qml.Z(0) @ qml.Z(1) @ qml.Z(2)) @qml.qnode(dev, interface="jax") def circuit2(params): qml.evolve(H1 + H2)(params, t=[0, 10]) return qml.expval(qml.Z(0) @ qml.Z(1) @ qml.Z(2))
In
circuit1
, the two Hamiltonians are evolved over the same time window, but inside different operators. Incircuit2
, we add the two to form a singleParametrizedHamiltonian
. This will combine the two so that the expected parameters will beparams1 + params2
(as an addition oflist
). They can then be included inside a singleParametrizedEvolution
.The resulting evolutions of
circuit1
andcircuit2
are not identical:>>> params = jnp.array([1., 2., 3.]) >>> circuit1(params) Array(-0.01542578, dtype=float64)
>>> params = jnp.concatenate([params, params]) # H1 + H2 requires 6 parameters! >>> circuit2(params) Array(-0.78235162, dtype=float64)
Here,
circuit1
is not executing the evolution ofH1
andH2
simultaneously, but rather executingH1
in the[0, 10]
time window and then executingH2
with the same time window, without taking into account how the time evolution ofH1
affects the evolution ofH2
and vice versa!One can also provide a list of time values that the ODE solver will use to calculate the evolution of the
ParametrizedHamiltonian
. Keep in mind that the ODE solver uses an adaptive step size, thus it might use additional intermediate time values.t = jnp.arange(0., 10.1, 0.1) @qml.qnode(dev, interface="jax") def circuit(params): qml.evolve(H1 + H2)(params, t=t) return qml.expval(qml.Z(0) @ qml.Z(1) @ qml.Z(2))
>>> circuit(params) Array(-0.78235162, dtype=float64) >>> jax.grad(circuit)(params) Array([-4.80708632, 3.70323783, -1.32958799, -2.40642477, 0.68105214, -0.52269657], dtype=float64)
Given that we used the same time window (
[0, 10]
), the results are the same as before.Computing intermediate time evolution
As discussed above, the ODE solver will evaluate the Schrodinger equation at intermediate times in any case. By passing additional time values explicitly in the time window
t
and settingreturn_intermediate=True
, thematrix
method will return the matrices for the intermediate time evolutions as well:\[\{U(t_0, t_0), U(t_0, t_1), \dots, U(t_0, t_{f-1}), U(t_0, t_f)\}.\]The first entry here is the initial condition \(U(t_0, t_0)=1\). For a simple time-dependent single-qubit Hamiltonian, this feature looks like the following:
ops = [qml.Z(0), qml.Y(0), qml.X(0)] coeffs = [lambda p, t: p * jnp.cos(t) for _ in range(3)] H = qml.dot(coeffs, ops) # time-dependent parametrized Hamiltonian param = [jnp.array(0.2), jnp.array(1.1), jnp.array(-1.3)] time = jnp.linspace(0.1, 0.4, 6) # Six time points from 0.1 to 0.4 ev = qml.evolve(H)(param, time, return_intermediate=True)
>>> ev_mats = ev.matrix() >>> ev_mats.shape (6, 2, 2)
Note that the broadcasting axis has length
len(time)
and is the first axis of the returned tensor. We may use this feature within QNodes executed on a simulator, returning the measurements for all intermediate time steps:dev = qml.device("default.qubit", wires=1) @qml.qnode(dev, interface="jax") def circuit(param, time): qml.evolve(H)(param, time, return_intermediate=True) return qml.probs(wires=[0])
>>> circuit(param, time) Array([[1. , 0. ], [0.98977406, 0.01022594], [0.95990416, 0.04009584], [0.91236167, 0.08763833], [0.84996865, 0.15003133], [0.77614817, 0.22385181]], dtype=float64)
Computing complementary time evolution
When using
return_intermediate=True
, the partial time evolutions share the initial time \(t_0\). For some applications, however, it may be useful to compute the complementary time evolutions, i.e. the partial evolutions that share the final time \(t_f\). This can be activated by settingcomplementary=True
, which will makeParametrizedEvolution.matrix
return the matrices\[\{U(t_0, t_f), U(t_1, t_f), \dots, U(t_f, t_f)\}.\]Using the Hamiltonian from the example above:
>>> complementary_ev = ev(param, time, return_intermediate=True, complementary=True) >>> comp_ev_mats = complementary_ev.matrix() >>> comp_ev_mats.shape (6, 2, 2)
If we multiply the matrices computed before with
complementary=False
with these complementary evolution matrices from the left, we obtain the full time evolution, which we can check by comparing to the last entry ofev_mats
:>>> for mat, c_mat in zip(ev_mats, comp_ev_mats): ... print(qml.math.allclose(c_mat @ mat, ev_mats[-1])) True True True True True True
Attributes
Arithmetic depth of the operator.
The basis of an operation, or for controlled gates, of the target operation.
Batch size of the operator if it is used with broadcasted parameters.
Control wires of the operator.
Gradient recipe for the parameter-shift method.
bool(x) -> bool
Integer hash that uniquely represents the operator.
Dictionary of non-trainable variables that this operation depends on.
Custom string to label a specific operator instance.
This property determines if an operator is hermitian.
String for the name of the operator.
Number of dimensions per trainable parameter of the operator.
Number of trainable parameters that the operator depends on.
Number of wires the operator acts on.
Returns the frequencies for each operator parameter with respect to an expectation value of the form \(\langle \psi | U(\mathbf{p})^\dagger \hat{O} U(\mathbf{p})|\psi\rangle\).
Trainable parameters that the operator depends on.
A
PauliSentence
representation of the Operator, orNone
if it doesn't have one.Wires that the operator acts on.
- arithmetic_depth¶
Arithmetic depth of the operator.
- basis¶
The basis of an operation, or for controlled gates, of the target operation. If not
None
, should take a value of"X"
,"Y"
, or"Z"
.For example,
X
andCNOT
havebasis = "X"
, whereasControlledPhaseShift
andRZ
havebasis = "Z"
.- Type
str or None
- batch_size¶
Batch size of the operator if it is used with broadcasted parameters.
The
batch_size
is determined based onndim_params
and the provided parameters for the operator. If (some of) the latter have an additional dimension, and this dimension has the same size for all parameters, its size is the batch size of the operator. If no parameter has an additional dimension, the batch size isNone
.- Returns
Size of the parameter broadcasting dimension if present, else
None
.- Return type
int or None
- control_wires¶
Control wires of the operator.
For operations that are not controlled, this is an empty
Wires
object of length0
.- Returns
The control wires of the operation.
- Return type
- grad_method = 'A'¶
- grad_recipe = None¶
Gradient recipe for the parameter-shift method.
This is a tuple with one nested list per operation parameter. For parameter \(\phi_k\), the nested list contains elements of the form \([c_i, a_i, s_i]\) where \(i\) is the index of the term, resulting in a gradient recipe of
\[\frac{\partial}{\partial\phi_k}f = \sum_{i} c_i f(a_i \phi_k + s_i).\]If
None
, the default gradient recipe containing the two terms \([c_0, a_0, s_0]=[1/2, 1, \pi/2]\) and \([c_1, a_1, s_1]=[-1/2, 1, -\pi/2]\) is assumed for every parameter.- Type
tuple(Union(list[list[float]], None)) or None
- has_adjoint = False¶
- has_decomposition = False¶
- has_diagonalizing_gates = False¶
- has_generator = False¶
- has_matrix¶
- has_sparse_matrix = False¶
- hash¶
Integer hash that uniquely represents the operator.
- Type
int
- hyperparameters¶
Dictionary of non-trainable variables that this operation depends on.
- Type
dict
- id¶
Custom string to label a specific operator instance.
- is_hermitian¶
This property determines if an operator is hermitian.
- name¶
String for the name of the operator.
- ndim_params¶
Number of dimensions per trainable parameter of the operator.
By default, this property returns the numbers of dimensions of the parameters used for the operator creation. If the parameter sizes for an operator subclass are fixed, this property can be overwritten to return the fixed value.
- Returns
Number of dimensions for each trainable parameter.
- Return type
tuple
- num_params¶
Number of trainable parameters that the operator depends on.
By default, this property returns as many parameters as were used for the operator creation. If the number of parameters for an operator subclass is fixed, this property can be overwritten to return the fixed value.
- Returns
number of parameters
- Return type
int
- num_wires = -1¶
Number of wires the operator acts on.
- parameter_frequencies¶
Returns the frequencies for each operator parameter with respect to an expectation value of the form \(\langle \psi | U(\mathbf{p})^\dagger \hat{O} U(\mathbf{p})|\psi\rangle\).
These frequencies encode the behaviour of the operator \(U(\mathbf{p})\) on the value of the expectation value as the parameters are modified. For more details, please see the
pennylane.fourier
module.- Returns
Tuple of frequencies for each parameter. Note that only non-negative frequency values are returned.
- Return type
list[tuple[int or float]]
Example
>>> op = qml.CRot(0.4, 0.1, 0.3, wires=[0, 1]) >>> op.parameter_frequencies [(0.5, 1), (0.5, 1), (0.5, 1)]
For operators that define a generator, the parameter frequencies are directly related to the eigenvalues of the generator:
>>> op = qml.ControlledPhaseShift(0.1, wires=[0, 1]) >>> op.parameter_frequencies [(1,)] >>> gen = qml.generator(op, format="observable") >>> gen_eigvals = qml.eigvals(gen) >>> qml.gradients.eigvals_to_frequencies(tuple(gen_eigvals)) (1.0,)
For more details on this relationship, see
eigvals_to_frequencies()
.
- parameters¶
Trainable parameters that the operator depends on.
- pauli_rep¶
A
PauliSentence
representation of the Operator, orNone
if it doesn’t have one.
Methods
adjoint
()Create an operation that is the adjoint of this one.
compute_decomposition
(*params[, wires])Representation of the operator as a product of other operators (static method).
compute_diagonalizing_gates
(*params, wires, ...)Sequence of gates that diagonalize the operator in the computational basis (static method).
compute_eigvals
(*params, **hyperparams)Eigenvalues of the operator in the computational basis (static method).
compute_matrix
(*params, **hyperparams)Representation of the operator as a canonical matrix in the computational basis (static method).
compute_sparse_matrix
(*params, **hyperparams)Representation of the operator as a sparse matrix in the computational basis (static method).
Representation of the operator as a product of other operators.
Sequence of gates that diagonalize the operator in the computational basis.
eigvals
()Eigenvalues of the operator in the computational basis.
Generator of an operator that is in single-parameter-form.
label
([decimals, base_label, cache])A customizable string representation of the operator.
map_wires
(wire_map)Returns a copy of the current operator with its wires changed according to the given wire map.
matrix
([wire_order])Representation of the operator as a matrix in the computational basis.
pow
(z)A list of new operators equal to this one raised to the given power.
queue
([context])Append the operator to the Operator queue.
simplify
()Reduce the depth of nested operators to the minimum.
The parameters required to implement a single-qubit gate as an equivalent
Rot
gate, up to a global phase.sparse_matrix
([wire_order])Representation of the operator as a sparse matrix in the computational basis.
terms
()Representation of the operator as a linear combination of other operators.
- adjoint()¶
Create an operation that is the adjoint of this one.
Adjointed operations are the conjugated and transposed version of the original operation. Adjointed ops are equivalent to the inverted operation for unitary gates.
- Returns
The adjointed operation.
- static compute_decomposition(*params, wires=None, **hyperparameters)¶
Representation of the operator as a product of other operators (static method).
\[O = O_1 O_2 \dots O_n.\]Note
Operations making up the decomposition should be queued within the
compute_decomposition
method.See also
- Parameters
*params (list) – trainable parameters of the operator, as stored in the
parameters
attributewires (Iterable[Any], Wires) – wires that the operator acts on
**hyperparams (dict) – non-trainable hyperparameters of the operator, as stored in the
hyperparameters
attribute
- Returns
decomposition of the operator
- Return type
list[Operator]
- static compute_diagonalizing_gates(*params, wires, **hyperparams)¶
Sequence of gates that diagonalize the operator in the computational basis (static method).
Given the eigendecomposition \(O = U \Sigma U^{\dagger}\) where \(\Sigma\) is a diagonal matrix containing the eigenvalues, the sequence of diagonalizing gates implements the unitary \(U^{\dagger}\).
The diagonalizing gates rotate the state into the eigenbasis of the operator.
See also
- Parameters
params (list) – trainable parameters of the operator, as stored in the
parameters
attributewires (Iterable[Any], Wires) – wires that the operator acts on
hyperparams (dict) – non-trainable hyperparameters of the operator, as stored in the
hyperparameters
attribute
- Returns
list of diagonalizing gates
- Return type
list[Operator]
- static compute_eigvals(*params, **hyperparams)¶
Eigenvalues of the operator in the computational basis (static method).
If
diagonalizing_gates
are specified and implement a unitary \(U^{\dagger}\), the operator can be reconstructed as\[O = U \Sigma U^{\dagger},\]where \(\Sigma\) is the diagonal matrix containing the eigenvalues.
Otherwise, no particular order for the eigenvalues is guaranteed.
See also
- Parameters
*params (list) – trainable parameters of the operator, as stored in the
parameters
attribute**hyperparams (dict) – non-trainable hyperparameters of the operator, as stored in the
hyperparameters
attribute
- Returns
eigenvalues
- Return type
tensor_like
- static compute_matrix(*params, **hyperparams)¶
Representation of the operator as a canonical matrix in the computational basis (static method).
The canonical matrix is the textbook matrix representation that does not consider wires. Implicitly, this assumes that the wires of the operator correspond to the global wire order.
See also
- Parameters
*params (list) – trainable parameters of the operator, as stored in the
parameters
attribute**hyperparams (dict) – non-trainable hyperparameters of the operator, as stored in the
hyperparameters
attribute
- Returns
matrix representation
- Return type
tensor_like
- static compute_sparse_matrix(*params, **hyperparams)¶
Representation of the operator as a sparse matrix in the computational basis (static method).
The canonical matrix is the textbook matrix representation that does not consider wires. Implicitly, this assumes that the wires of the operator correspond to the global wire order.
See also
- Parameters
*params (list) – trainable parameters of the operator, as stored in the
parameters
attribute**hyperparams (dict) – non-trainable hyperparameters of the operator, as stored in the
hyperparameters
attribute
- Returns
sparse matrix representation
- Return type
scipy.sparse._csr.csr_matrix
- decomposition()¶
Representation of the operator as a product of other operators.
\[O = O_1 O_2 \dots O_n\]A
DecompositionUndefinedError
is raised if no representation by decomposition is defined.See also
- Returns
decomposition of the operator
- Return type
list[Operator]
- diagonalizing_gates()¶
Sequence of gates that diagonalize the operator in the computational basis.
Given the eigendecomposition \(O = U \Sigma U^{\dagger}\) where \(\Sigma\) is a diagonal matrix containing the eigenvalues, the sequence of diagonalizing gates implements the unitary \(U^{\dagger}\).
The diagonalizing gates rotate the state into the eigenbasis of the operator.
A
DiagGatesUndefinedError
is raised if no representation by decomposition is defined.See also
- Returns
a list of operators
- Return type
list[Operator] or None
- eigvals()¶
Eigenvalues of the operator in the computational basis.
If
diagonalizing_gates
are specified and implement a unitary \(U^{\dagger}\), the operator can be reconstructed as\[O = U \Sigma U^{\dagger},\]where \(\Sigma\) is the diagonal matrix containing the eigenvalues.
Otherwise, no particular order for the eigenvalues is guaranteed.
Note
When eigenvalues are not explicitly defined, they are computed automatically from the matrix representation. Currently, this computation is not differentiable.
A
EigvalsUndefinedError
is raised if the eigenvalues have not been defined and cannot be inferred from the matrix representation.See also
- Returns
eigenvalues
- Return type
tensor_like
- generator()¶
Generator of an operator that is in single-parameter-form.
For example, for operator
\[U(\phi) = e^{i\phi (0.5 Y + Z\otimes X)}\]we get the generator
>>> U.generator() 0.5 * Y(0) + Z(0) @ X(1)
The generator may also be provided in the form of a dense or sparse Hamiltonian (using
Hamiltonian
andSparseHamiltonian
respectively).The default value to return is
None
, indicating that the operation has no defined generator.
- label(decimals=None, base_label=None, cache=None)[source]¶
A customizable string representation of the operator.
- Parameters
decimals=None (int) – If
None
, no parameters are included. Else, specifies how to round the parameters.base_label=None (str) – overwrite the non-parameter component of the label
cache=None (dict) – dictionary that carries information between label calls in the same drawing
- Returns
label to use in drawings
- Return type
str
Example:
>>> H = qml.X(1) + qml.pulse.constant * qml.Y(0) + jnp.polyval * qml.Y(1) >>> params = [0.2, [1, 2, 3]] >>> op = qml.evolve(H)(params, t=2) >>> cache = {'matrices': []}
>>> op.label() "Parametrized\nEvolution" >>> op.label(decimals=2, cache=cache) "Parametrized\nEvolution\n(p=[0.20,M0], t=[0. 2.])" >>> op.label(base_label="my_label") "my_label" >>> op.label(decimals=2, base_label="my_label", cache=cache) "my_label\n(p=[0.20,M0], t=[0. 2.])"
Array-like parameters are stored in
cache['matrices']
.
- map_wires(wire_map)[source]¶
Returns a copy of the current operator with its wires changed according to the given wire map.
- Parameters
wire_map (dict) – dictionary containing the old wires as keys and the new wires as values
- Returns
new operator
- Return type
- matrix(wire_order=None)[source]¶
Representation of the operator as a matrix in the computational basis.
If
wire_order
is provided, the numerical representation considers the position of the operator’s wires in the global wire order. Otherwise, the wire order defaults to the operator’s wires.If the matrix depends on trainable parameters, the result will be cast in the same autodifferentiation framework as the parameters.
A
MatrixUndefinedError
is raised if the matrix representation has not been defined.See also
- Parameters
wire_order (Iterable) – global wire order, must contain all wire labels from the operator’s wires
- Returns
matrix representation
- Return type
tensor_like
- pow(z)¶
A list of new operators equal to this one raised to the given power.
- Parameters
z (float) – exponent for the operator
- Returns
list[
Operator
]
- queue(context=<class 'pennylane.queuing.QueuingManager'>)¶
Append the operator to the Operator queue.
- simplify()¶
Reduce the depth of nested operators to the minimum.
- Returns
simplified operator
- Return type
- single_qubit_rot_angles()¶
The parameters required to implement a single-qubit gate as an equivalent
Rot
gate, up to a global phase.- Returns
A list of values \([\phi, \theta, \omega]\) such that \(RZ(\omega) RY(\theta) RZ(\phi)\) is equivalent to the original operation.
- Return type
tuple[float, float, float]
- sparse_matrix(wire_order=None)¶
Representation of the operator as a sparse matrix in the computational basis.
If
wire_order
is provided, the numerical representation considers the position of the operator’s wires in the global wire order. Otherwise, the wire order defaults to the operator’s wires.A
SparseMatrixUndefinedError
is raised if the sparse matrix representation has not been defined.See also
- Parameters
wire_order (Iterable) – global wire order, must contain all wire labels from the operator’s wires
- Returns
sparse matrix representation
- Return type
scipy.sparse._csr.csr_matrix
- terms()¶
Representation of the operator as a linear combination of other operators.
\[O = \sum_i c_i O_i\]A
TermsUndefinedError
is raised if no representation by terms is defined.- Returns
list of coefficients \(c_i\) and list of operations \(O_i\)
- Return type
tuple[list[tensor_like or float], list[Operation]]