forked from mit-han-lab/torchquantum
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from GenericP3rson/dev
Merging Dev to Get Latest Updates (Esp. with Isometry)
- Loading branch information
Showing
14 changed files
with
806 additions
and
391 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
torchquantum.layers | ||
====================== | ||
|
||
.. currentmodule:: torchquantum.layer | ||
|
||
Layers | ||
--------- | ||
.. autosummary:: | ||
:toctree: generated | ||
:template: classtemplate_controlflow.rst | ||
|
||
|
||
QuantumModuleFromOps | ||
TrainableOpAll | ||
ClassicalInOpAll | ||
FixedOpAll | ||
TwoQAll | ||
RandomLayer | ||
RandomLayerAllTypes | ||
Op1QAllLayer | ||
RandomOp1All | ||
Op2QAllLayer | ||
Op2QButterflyLayer | ||
Op2QDenseLayer | ||
CXLayer | ||
CXCXCXLayer | ||
SWAPSWAPLayer | ||
RXYZCXLayer0 | ||
QFTLayer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
api_torchquantum | ||
api_functional | ||
api_operators | ||
api_layers | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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=}!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,4 @@ | |
|
||
from .layers import * | ||
from .nlocal import * | ||
from .general import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
|
||
|
Oops, something went wrong.