From 006ff7fd5d4e7df43db7f6341e4306f55feb01f4 Mon Sep 17 00:00:00 2001 From: trbromley Date: Mon, 22 Mar 2021 15:36:35 -0400 Subject: [PATCH] Remove kernel_operations --- pennylane_lightning/lightning_qubit.py | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/pennylane_lightning/lightning_qubit.py b/pennylane_lightning/lightning_qubit.py index 474cb6a4b1..dac0a34f2c 100644 --- a/pennylane_lightning/lightning_qubit.py +++ b/pennylane_lightning/lightning_qubit.py @@ -74,29 +74,6 @@ class LightningQubit(DefaultQubit): "CRot", } - kernel_operations = { - "PauliX", - "PauliY", - "PauliZ", - "Hadamard", - "S", - "T", - "RX", - "RY", - "RZ", - "PhaseShift", - "Rot", - "CNOT", - "SWAP", - "CZ", - "CRX", - "CRY", - "CRZ", - "CRot", - "Toffoli", - "CSWAP", - } - observables = {"PauliX", "PauliY", "PauliZ", "Hadamard", "Hermitian", "Identity"} def __init__(self, wires, *, shots=1000, analytic=True):