Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GlobalR/GlobalRX/GlobalRY Gates #201

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions test/layers/test_rotgate.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import torchquantum as tq
import qiskit
from qiskit import Aer, execute

from torchquantum.util import (
switch_little_big_endian_matrix,
find_global_phase,
)

from qiskit.circuit.library import GR, GRX, GRY, GRZ
import numpy as np

all_pairs = [
{"qiskit": GR, "tq": tq.layer.GlobalR, "params": 2},
{"qiskit": GRX, "tq": tq.layer.GlobalRX, "params": 1},
{"qiskit": GRY, "tq": tq.layer.GlobalRY, "params": 1},
{"qiskit": GRZ, "tq": tq.layer.GlobalRZ, "params": 1},
]

ITERATIONS = 10

# test each pair
for pair in all_pairs:
# test 2-5 wires
for num_wires in range(2, 5):
# try multiple random parameters
for _ in range(ITERATIONS):
# generate random parameters
params = [
np.random.uniform(-2 * np.pi, 2 * np.pi) for _ in range(pair["params"])
]

# create the qiskit circuit
qiskit_circuit = pair["qiskit"](num_wires, *params)

# get the unitary from qiskit
backend = Aer.get_backend("unitary_simulator")
result = execute(qiskit_circuit, backend).result()
unitary_qiskit = result.get_unitary(qiskit_circuit)

# create tq circuit
qdev = tq.QuantumDevice(num_wires)
tq_circuit = pair["tq"](num_wires, *params)
tq_circuit(qdev)

# get the unitary from tq
unitary_tq = tq_circuit.get_unitary(qdev)
unitary_tq = switch_little_big_endian_matrix(unitary_tq.data.numpy())

# phase?
phase = find_global_phase(unitary_tq, unitary_qiskit, 1e-4)

assert np.allclose(
unitary_tq * phase, unitary_qiskit, atol=1e-6
), f"{pair} not equal with {params=}!"
1 change: 1 addition & 0 deletions torchquantum/layer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@

from .layers import *
from .nlocal import *
from .general import *
104 changes: 104 additions & 0 deletions torchquantum/layer/general.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
"""
MIT License

Copyright (c) 2020-present TorchQuantum Authors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""


import torch
import torchquantum as tq
from torchquantum.layer.layers import (
LayerTemplate0,
Op1QAllLayer,
Op2QAllLayer,
RandomOp1All,
)

__all__ = [
"GlobalR",
"GlobalRX",
"GlobalRY",
"GlobalRZ",
]


class GlobalR(tq.QuantumModule):
"""Layer Template for a Global R General Gate"""

def __init__(
self,
n_wires: int = 0,
theta: float = 0,
phi: float = 0,
):
"""Create the layer"""
super().__init__()
self.n_wires = n_wires
self.params = torch.tensor([[theta, phi]])

@tq.static_support
def forward(self, q_device, x=None):
for k in range(self.n_wires):
tq.R()(q_device, wires=k, params=self.params)


class GlobalRX(GlobalR):
"""Layer Template for a Global RX General Gate"""

def __init__(
self,
n_wires: int = 0,
theta: float = 0,
):
"""Create the layer"""
super().__init__(n_wires, theta, phi=0)


class GlobalRY(GlobalR):
"""Layer Template for a Global RY General Gate"""

def __init__(
self,
n_wires: int = 0,
theta: float = 0,
):
"""Create the layer"""
super().__init__(n_wires, theta, phi=torch.pi / 2)

class GlobalRZ(tq.QuantumModule):
"""Layer Template for a Global RZ General Gate"""

def __init__(
self,
n_wires: int = 0,
phi: float = 0,
):
"""Create the layer"""
super().__init__()
self.n_wires = n_wires
self.params = torch.tensor([[phi]])

@tq.static_support
def forward(self, q_device, x=None):
for k in range(self.n_wires):
tq.RZ()(q_device, wires=k, params=self.params)


Loading