Source code for pennylane.labs.resource_estimation.ops.qubit.parametric_ops_single_qubit
# Copyright 2024 Xanadu Quantum Technologies Inc.# Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at# http://www.apache.org/licenses/LICENSE-2.0# Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License.r"""Resource operators for parametric single qubit operations."""fromtypingimportDictimportnumpyasnpimportpennylaneasqmlimportpennylane.labs.resource_estimationasre# pylint: disable=arguments-differdef_rotation_resources(epsilon=10e-3):"""An estimate on the number of T gates needed to implement a Pauli rotation. The estimate is taken from https://arxiv.org/abs/1404.5320."""gate_types={}num_gates=round(1.149*np.log2(1/epsilon)+9.2)t=re.ResourceT.resource_rep()gate_types[t]=num_gatesreturngate_types
[docs]classResourcePhaseShift(qml.PhaseShift,re.ResourceOperator):r""" Resource class for the PhaseShift gate. The resources are defined from the following identity: .. math:: R_\phi(\phi) = e^{i\phi/2}R_z(\phi) = \begin{bmatrix} 1 & 0 \\ 0 & e^{i\phi} \end{bmatrix}. """@staticmethoddef_resource_decomp()->Dict[re.CompressedResourceOp,int]:gate_types={}rz=re.ResourceRZ.resource_rep()global_phase=re.ResourceGlobalPhase.resource_rep()gate_types[rz]=1gate_types[global_phase]=1returngate_types
[docs]classResourceRX(qml.RX,re.ResourceOperator):"""Resource class for the RX gate."""@staticmethoddef_resource_decomp(config)->Dict[re.CompressedResourceOp,int]:return_rotation_resources(epsilon=config["error_rx"])
[docs]classResourceRY(qml.RY,re.ResourceOperator):"""Resource class for the RY gate."""@staticmethoddef_resource_decomp(config)->Dict[re.CompressedResourceOp,int]:return_rotation_resources(epsilon=config["error_ry"])
[docs]classResourceRZ(qml.RZ,re.ResourceOperator):r"""Resource class for the RZ gate. Resources: The resources are estimated by approximating the gate with a series of T gates. The estimate is taken from https://arxiv.org/abs/1404.5320. """@staticmethoddef_resource_decomp(config)->Dict[re.CompressedResourceOp,int]:return_rotation_resources(epsilon=config["error_rz"])
[docs]classResourceRot(qml.Rot,re.ResourceOperator):"""Resource class for the Rot gate."""@staticmethoddef_resource_decomp()->Dict[re.CompressedResourceOp,int]:rx=ResourceRX.resource_rep()ry=ResourceRY.resource_rep()rz=ResourceRZ.resource_rep()gate_types={rx:1,ry:1,rz:1}returngate_types