qml.ftqc.GraphStatePrep¶
- class GraphStatePrep(graph, one_qubit_ops=<class 'pennylane.ops.qubit.non_parametric_ops.Hadamard'>, two_qubit_ops=<class 'pennylane.ops.op_math.controlled_ops.CZ'>, wires=None)[source]¶
Bases:
pennylane.operation.Operation
Encode a graph state with a single graph operation applied on each qubit, and an entangling operation applied on nearest-neighbor qubits defined by the graph connectivity. The initial graph is |0⟩⊗V, given each qubit or graph vertex node (V) in the graph is in the |0⟩ state and is not entangled with any other qubit. The target graph state |ψ⟩ is: |ψ⟩=∏{a,b}∈EUab|+⟩⊗V where Uab is a phase gate applied to the vertices a, b of a edge E in the graph as illustrated in eq. (24) in arxiv:quant-ph/0602096.
The target graph state can be prepared as below:
1. Each qubit is prepared as |+⟩⊗V state by applying the
one_qubit_ops
(H
gate) operation.2. Entangle every nearest qubit pair in the graph with
two_qubit_ops
(CZ
gate) operation.- Parameters
graph (Union[QubitGraph, networkx.Graph]) – QubitGraph or networkx.Graph object mapping qubit to wires. The node labels of
graph
must be sortable.one_qubit_ops (Operation) – Operator to prepare the initial state of each qubit. Defaults to
Hadamard
.two_qubit_ops (Operation) – Operator to entangle nearest qubits. Defaults to
CZ
.wires (Optional[Wires]) – Wires the operator applies on. Wires are be mapped 1:1 to the graph nodes sorted in ascending order. Optional only graph is a QubitGraph. If no wires are provided, the
children
of the providedQubitGraph
will be used as wires.
- Example:
The graph state preparation layer can be customized by the user.
import pennylane as qml from pennylane.ftqc import generate_lattice, GraphStatePrep, QubitGraph dev = qml.device('default.qubit') @qml.qnode(dev) def circuit(q, one_qubit_ops, two_qubit_ops, wires = None): GraphStatePrep(graph=q, one_qubit_ops=one_qubit_ops, two_qubit_ops=two_qubit_ops, wires = wires) return qml.probs() lattice = generate_lattice([2, 2], "square") q = QubitGraph(lattice.graph, id="square") one_qubit_ops = qml.Y two_qubit_ops = qml.CNOT
If the wires argument is not explicitly passed to the circuit, the child nodes of the
QubitGraph
are used as the wires. The resulting circuit after applying theGraphStatePrep
template is:>>> print(qml.draw(circuit, level="device")(q, one_qubit_ops, two_qubit_ops)) QubitGraph<id=(0, 0), loc=[square]>: ──Y─╭●─╭●───────┤ Probs QubitGraph<id=(0, 1), loc=[square]>: ──Y─│──╰X─╭●────┤ Probs QubitGraph<id=(1, 0), loc=[square]>: ──Y─╰X────│──╭●─┤ Probs QubitGraph<id=(1, 1), loc=[square]>: ──Y───────╰X─╰X─┤ Probs
The circuit wires can also be customized by passing a wires argument to the circuit as follows:
>>> print(qml.draw(circuit, level="device")(q, one_qubit_ops, two_qubit_ops, wires=[0, 1, 2, 3])) 0: ──Y─╭●─╭●───────┤ Probs 1: ──Y─│──╰X─╭●────┤ Probs 2: ──Y─╰X────│──╭●─┤ Probs 3: ──Y───────╰X─╰X─┤ Probs
A Note on Node Ordering
The graph structures used for defining qubit connectivity are inherently unordered data structures. Mapping the nodes in the graph to the ordered sequence of wires can therefore result in ambiguity. To ensure this mapping is reliable and deterministic, the sequence of wires is mapped to the list of graph nodes sorted in ascending order.
Consider the following example:
import networkx as nx import pennylane as qml from pennylane.ftqc import GraphStatePrep dev = qml.device("default.qubit") @qml.qnode(dev) def circuit(graph, wires): GraphStatePrep(graph=graph, one_qubit_ops=qml.H, two_qubit_ops=qml.CZ, wires=wires) return qml.state()
Defining a graph structure and drawing the circuit shows how the graph node labels have been mapped to wires:
>>> g1 = nx.Graph([("a", "b"), ("b", "c"), ("c", "d")]) # (a) -- (b) -- (c) -- (d) >>> print(qml.draw(circuit, level="device")(g1, wires=range(4))) 0: ──H─╭●───────┤ State 1: ──H─╰Z─╭●────┤ State 2: ──H────╰Z─╭●─┤ State 3: ──H───────╰Z─┤ State
In other words,
GraphStatePrep
has defined the node-label-to-wire mapping:{"a": 0, "b": 1, "c": 2, "d": 3}
which corresponds to the graph structure with wire indices:
(0) -- (1) -- (2) -- (3)
as shown in the circuit diagram with
CZ
operations applied along each edge in the graph.Drawing the circuit for a graph with the same structure but with different node labels gives:
>>> g2 = nx.Graph([("b", "a"), ("a", "c"), ("c", "d")]) # (b) -- (a) -- (c) -- (d) >>> print(qml.draw(circuit, level="device")(g2, wires=range(4))) 0: ──H─╭Z─╭●────┤ State 1: ──H─╰●─│─────┤ State 2: ──H────╰Z─╭●─┤ State 3: ──H───────╰Z─┤ State
As before,
GraphStatePrep
defined the node-label-to-wire mapping to be:{"a": 0, "b": 1, "c": 2, "d": 3}
but now, this corresponds to the graph structure with wire indices:
(1) -- (0) -- (2) -- (3)
as shown in the circuit diagram.
While these two circuit might appear to be the same, they are indeed distinct for this sequence of wires, and result in different state vectors. It is therefore important to remember that the node labels influence how nearest-neighbour wires are interpreted.
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 computation method.
Gradient recipe for the parameter-shift method.
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 ⟨ψ|U(p)†ˆOU(p)|ψ⟩.
Trainable parameters that the operator depends on.
A
PauliSentence
representation of the Operator, orNone
if it doesn't have one.A dictionary containing the minimal information needed to compute a resource estimate of the operator's decomposition.
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¶
Gradient computation method.
'A'
: analytic differentiation using the parameter-shift method.'F'
: finite difference numerical differentiation.None
: the operation may not be differentiated.
Default is
'F'
, orNone
if the Operation has zero parameters.
- grad_recipe = None¶
Gradient recipe for the parameter-shift method.
This is a tuple with one nested list per operation parameter. For parameter ϕk, the nested list contains elements of the form [ci,ai,si] where i is the index of the term, resulting in a gradient recipe of
∂∂ϕkf=∑icif(aiϕk+si).If
None
, the default gradient recipe containing the two terms [c0,a0,s0]=[1/2,1,π/2] and [c1,a1,s1]=[−1/2,1,−π/2] is assumed for every parameter.- Type
tuple(Union(list[list[float]], None)) or None
- has_adjoint = False¶
- has_decomposition = True¶
- has_diagonalizing_gates = False¶
- has_generator = False¶
- has_matrix = False¶
- has_plxpr_decomposition = False¶
- 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 ⟨ψ|U(p)†ˆOU(p)|ψ⟩.
These frequencies encode the behaviour of the operator U(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.
- resource_keys = {}¶
- resource_params¶
A dictionary containing the minimal information needed to compute a resource estimate of the operator’s decomposition.
The keys of this dictionary should match the
resource_keys
attribute of the operator class. Two instances of the same operator type should have identicalresource_params
iff their decompositions exhibit the same counts for each gate type, even if the individual gate parameters differ.Examples
The
MultiRZ
has non-emptyresource_keys
:>>> qml.MultiRZ.resource_keys {"num_wires"}
The
resource_params
of an instance ofMultiRZ
will contain the number of wires:>>> op = qml.MultiRZ(0.5, wires=[0, 1]) >>> op.resource_params {"num_wires": 2}
Note that another
MultiRZ
may have different parameters but the sameresource_params
:>>> op2 = qml.MultiRZ(0.7, wires=[1, 2]) >>> op2.resource_params {"num_wires": 2}
Methods
adjoint
()Create an operation that is the adjoint of this one.
compute_decomposition
(wires, graph[, ...])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_qfunc_decomposition
(*args, ...)Experimental method to compute the dynamic decomposition of the operator with program capture enabled.
compute_sparse_matrix
(*params[, format])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
(*args, **kwargs)Defines how the graph state preparation is represented in diagrams and drawings.
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, format])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(wires, graph, one_qubit_ops=<class 'pennylane.ops.qubit.non_parametric_ops.Hadamard'>, two_qubit_ops=<class 'pennylane.ops.op_math.controlled_ops.CZ'>)[source]¶
Representation of the operator as a product of other operators (static method).
Note
Operations making up the decomposition should be queued within the
compute_decomposition
method.See also
- Parameters
wires (Wires) – Wires the decomposition applies on. Wires will be mapped 1:1 to graph nodes.
graph (Union[nx.Graph, QubitGraph]) – QubitGraph or nx.Graph object mapping qubit to wires.
one_qubit_ops (Operation) – Operator to prepare the initial state of each qubit. Default to
H
.two_qubit_ops (Operation) – Operator to entangle nearest qubits. Default to
CZ
.
- 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ΣU† where Σ is a diagonal matrix containing the eigenvalues, the sequence of diagonalizing gates implements the unitary U†.
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†, the operator can be reconstructed asO=UΣU†,where Σ 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_qfunc_decomposition(*args, **hyperparameters)¶
Experimental method to compute the dynamic decomposition of the operator with program capture enabled.
When the program capture feature is enabled with
qml.capture.enable()
, the decomposition of the operator is computed with this method if it is defined. Otherwise, thecompute_decomposition()
method is used.The exception to this rule is when the operator is returned from the
compute_decomposition()
method of another operator, in which case the decomposition is performed withcompute_decomposition()
(even if this method is defined), and not with this method.When
compute_qfunc_decomposition
is defined for an operator, the control flow operations within the method (specifying the decomposition of the operator) are recorded in the JAX representation.Note
This method is experimental and subject to change.
See also
- Parameters
*args (list) – positional arguments passed to the operator, including trainable parameters and wires
**hyperparameters (dict) – non-trainable hyperparameters of the operator, as stored in the
hyperparameters
attribute
- static compute_sparse_matrix(*params, format='csr', **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
attributeformat (str) – format of the returned scipy sparse matrix, for example ‘csr’
**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=O1O2…OnA
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ΣU† where Σ is a diagonal matrix containing the eigenvalues, the sequence of diagonalizing gates implements the unitary U†.
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†, the operator can be reconstructed asO=UΣU†,where Σ 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(ϕ)=eiϕ(0.5Y+Z⊗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
LinearCombination
andSparseHamiltonian
respectively).
- label(*args, **kwargs)[source]¶
Defines how the graph state preparation is represented in diagrams and drawings.
- Parameters
*args (Optional[Union[int, str]]) – positional arguments for decimals and base_label.
**kwargs (Optional[dict]) – keyword arguments for cache.
- Returns
label to use in drawings
- Return type
str
- map_wires(wire_map)¶
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)¶
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 [ϕ,θ,ω] such that RZ(ω)RY(θ)RZ(ϕ) is equivalent to the original operation.
- Return type
tuple[float, float, float]
- sparse_matrix(wire_order=None, format='csr')¶
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
format (str) – format of the returned scipy sparse matrix, for example ‘csr’
- Returns
sparse matrix representation
- Return type
scipy.sparse._csr.csr_matrix