Source code for pennylane.labs.resource_estimation.ops.qubit.non_parametric_ops
# 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 non parametric single qubit operations."""fromtypingimportDictimportpennylaneasqmlimportpennylane.labs.resource_estimationasre# pylint: disable=arguments-differ
[docs]classResourceHadamard(qml.Hadamard,re.ResourceOperator):"""Resource class for the Hadamard gate."""@staticmethoddef_resource_decomp(**kwargs)->Dict[re.CompressedResourceOp,int]:raisere.ResourcesNotDefined
[docs]classResourceS(qml.S,re.ResourceOperator):"""Resource class for the S gate."""@staticmethoddef_resource_decomp(**kwargs)->Dict[re.CompressedResourceOp,int]:gate_types={}t=ResourceT.resource_rep(**kwargs)gate_types[t]=2returngate_types
[docs]classResourceT(qml.T,re.ResourceOperator):"""Resource class for the T gate."""@staticmethoddef_resource_decomp(**kwargs)->Dict[re.CompressedResourceOp,int]:raisere.ResourcesNotDefined
[docs]classResourceX(qml.X,re.ResourceOperator):"""Resource class for the X gate."""@staticmethoddef_resource_decomp(**kwargs)->Dict[re.CompressedResourceOp,int]:s=re.ResourceS.resource_rep(**kwargs)h=re.ResourceHadamard.resource_rep(**kwargs)gate_types={}gate_types[s]=2gate_types[h]=2returngate_types
[docs]classResourceY(qml.Y,re.ResourceOperator):"""Resource class for the Y gate."""@staticmethoddef_resource_decomp(**kwargs)->Dict[re.CompressedResourceOp,int]:s=re.ResourceS.resource_rep(**kwargs)h=re.ResourceHadamard.resource_rep(**kwargs)gate_types={}gate_types[s]=6gate_types[h]=2returngate_types
[docs]classResourceZ(qml.Z,re.ResourceOperator):"""Resource class for the Z gate."""@staticmethoddef_resource_decomp(**kwargs)->Dict[re.CompressedResourceOp,int]:s=re.ResourceS.resource_rep(**kwargs)gate_types={}gate_types[s]=2returngate_types