in src/braket/pennylane_plugin/ops.py [0:0]
def decomposition(phi, wires):
return [
qml.SWAP(wires=wires),
qml.CNOT(wires=wires),
qml.PhaseShift(phi, wires=[wires[1]]),
qml.CNOT(wires=wires),
]