-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Permutation Bloq * address comments: use `x` instead of `q` invert code in `build_call_graph` add note for neg-ctrl CNOT * move `XorK` to `bitwise.py` * tests * XorK bloq examples * undo trivial changes * mypy * cleanup EqualsAConstant * fix decomp * use dictionaries for sparse/partial permutations, simplify code * fix bug * regen notebooks * docstring * add notebook * docstring unitary
- Loading branch information
Showing
15 changed files
with
1,097 additions
and
12 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
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,120 @@ | ||
# Copyright 2024 Google LLC | ||
# | ||
# 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 | ||
# | ||
# https://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. | ||
from functools import cached_property | ||
from typing import cast, Dict, Optional, Set, Tuple, TYPE_CHECKING | ||
|
||
import numpy as np | ||
from attrs import frozen | ||
|
||
from qualtran import ( | ||
bloq_example, | ||
BloqBuilder, | ||
DecomposeTypeError, | ||
QBit, | ||
QDType, | ||
QUInt, | ||
Register, | ||
Signature, | ||
Soquet, | ||
SoquetT, | ||
) | ||
from qualtran._infra.gate_with_registers import SpecializedSingleQubitControlledGate | ||
from qualtran.bloqs.basic_gates import CNOT, XGate | ||
from qualtran.resource_counting.generalizers import ignore_split_join | ||
from qualtran.symbolics import is_symbolic, SymbolicInt | ||
|
||
if TYPE_CHECKING: | ||
from qualtran.resource_counting import BloqCountT, SympySymbolAllocator | ||
|
||
|
||
def _cvs_converter(vv): | ||
if isinstance(vv, (int, np.integer)): | ||
return (int(vv),) | ||
return tuple(int(v) for v in vv) | ||
|
||
|
||
@frozen | ||
class XorK(SpecializedSingleQubitControlledGate): | ||
r"""Maps |x> to |x \oplus k> for a constant k. | ||
Args: | ||
dtype: Data type of the input register `x`. | ||
k: The classical integer value to be XOR-ed to x. | ||
control_val: an optional single bit control, apply the operation when | ||
the control qubit equals the `control_val`. | ||
Registers: | ||
x: A quantum register of type `self.dtype` (see above). | ||
ctrl: A sequence of control qubits (only when `control_val` is not None). | ||
""" | ||
dtype: QDType | ||
k: SymbolicInt | ||
control_val: Optional[int] = None | ||
|
||
@cached_property | ||
def signature(self) -> 'Signature': | ||
return Signature([*self.control_registers, Register('x', self.dtype)]) | ||
|
||
@cached_property | ||
def control_registers(self) -> Tuple[Register, ...]: | ||
if self.control_val is not None: | ||
return (Register('ctrl', QBit()),) | ||
return () | ||
|
||
@cached_property | ||
def bitsize(self) -> SymbolicInt: | ||
return self.dtype.num_qubits | ||
|
||
def is_symbolic(self): | ||
return is_symbolic(self.k, self.dtype) | ||
|
||
def build_composite_bloq(self, bb: 'BloqBuilder', **soqs: 'SoquetT') -> Dict[str, 'SoquetT']: | ||
if self.is_symbolic(): | ||
raise DecomposeTypeError(f"cannot decompose symbolic {self}") | ||
|
||
# TODO clean this up once https://github.com/quantumlib/Qualtran/pull/1137 is merged | ||
ctrl = soqs.pop('ctrl', None) | ||
|
||
xs = bb.split(cast(Soquet, soqs.pop('x'))) | ||
|
||
for i, bit in enumerate(self.dtype.to_bits(self.k)): | ||
if bit == 1: | ||
if ctrl is not None: | ||
ctrl, xs[i] = bb.add(CNOT(), ctrl=ctrl, target=xs[i]) | ||
else: | ||
xs[i] = bb.add(XGate(), q=xs[i]) | ||
|
||
soqs['x'] = bb.join(xs) | ||
|
||
if ctrl is not None: | ||
soqs['ctrl'] = ctrl | ||
return soqs | ||
|
||
def build_call_graph(self, ssa: 'SympySymbolAllocator') -> Set['BloqCountT']: | ||
bit_flip_bloq = CNOT() if self.control_val is not None else XGate() | ||
num_flips = self.bitsize if self.is_symbolic() else sum(self.dtype.to_bits(self.k)) | ||
return {(bit_flip_bloq, num_flips)} | ||
|
||
|
||
@bloq_example(generalizer=ignore_split_join) | ||
def _xork() -> XorK: | ||
xork = XorK(QUInt(8), 0b01010111) | ||
return xork | ||
|
||
|
||
@bloq_example(generalizer=ignore_split_join) | ||
def _cxork() -> XorK: | ||
cxork = XorK(QUInt(8), 0b01010111).controlled() | ||
assert isinstance(cxork, XorK) | ||
return cxork |
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,38 @@ | ||
# Copyright 2024 Google LLC | ||
# | ||
# 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 | ||
# | ||
# https://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. | ||
from qualtran import QUInt | ||
from qualtran.bloqs.arithmetic.bitwise import _cxork, _xork, XorK | ||
|
||
|
||
def test_examples(bloq_autotester): | ||
bloq_autotester(_cxork) | ||
bloq_autotester(_xork) | ||
|
||
|
||
def test_xork_classical_sim(): | ||
k = 0b01101010 | ||
bloq = XorK(QUInt(9), k) | ||
cbloq = bloq.controlled() | ||
|
||
for x in bloq.dtype.get_classical_domain(): | ||
(x_out,) = bloq.call_classically(x=x) | ||
assert x_out == x ^ k | ||
|
||
ctrl_out, x_out = cbloq.call_classically(ctrl=0, x=x) | ||
assert ctrl_out == 0 | ||
assert x_out == x | ||
|
||
ctrl_out, x_out = cbloq.call_classically(ctrl=1, x=x) | ||
assert ctrl_out == 1 | ||
assert x_out == x ^ k |
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
Oops, something went wrong.