bloqade-circuit 0.4.4__py3-none-any.whl → 0.4.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of bloqade-circuit might be problematic. Click here for more details.

@@ -9,8 +9,9 @@ from . import lowering as lowering
9
9
  from .. import kernel
10
10
 
11
11
  # NOTE: just to register methods
12
- from .emit import op as op, qubit as qubit
12
+ from .emit import op as op, noise as noise, qubit as qubit
13
13
  from .lowering import Squin
14
+ from ..noise.rewrite import RewriteNoiseStmts
14
15
  from .emit.emit_circuit import EmitCirq
15
16
 
16
17
 
@@ -18,6 +19,9 @@ def load_circuit(
18
19
  circuit: cirq.Circuit,
19
20
  kernel_name: str = "main",
20
21
  dialects: ir.DialectGroup = kernel,
22
+ register_as_argument: bool = False,
23
+ return_register: bool = False,
24
+ register_argument_name: str = "q",
21
25
  globals: dict[str, Any] | None = None,
22
26
  file: str | None = None,
23
27
  lineno_offset: int = 0,
@@ -32,13 +36,23 @@ def load_circuit(
32
36
  Keyword Args:
33
37
  kernel_name (str): The name of the kernel to load. Defaults to "main".
34
38
  dialects (ir.DialectGroup | None): The dialects to use. Defaults to `squin.kernel`.
39
+ register_as_argument (bool): Determine whether the resulting kernel function should accept
40
+ a single `ilist.IList[Qubit, Any]` argument that is a list of qubits used within the
41
+ function. This allows you to compose kernel functions generated from circuits.
42
+ Defaults to `False`.
43
+ return_register (bool): Determine whether the resulting kernel functionr returns a
44
+ single value of type `ilist.IList[Qubit, Any]` that is the list of qubits used
45
+ in the kernel function. Useful when you want to compose multiple kernel functions
46
+ generated from circuits. Defaults to `False`.
47
+ register_argument_name (str): The name of the argument that represents the qubit register.
48
+ Only used when `register_as_argument=True`. Defaults to "q".
35
49
  globals (dict[str, Any] | None): The global variables to use. Defaults to None.
36
50
  file (str | None): The file name for error reporting. Defaults to None.
37
51
  lineno_offset (int): The line number offset for error reporting. Defaults to 0.
38
52
  col_offset (int): The column number offset for error reporting. Defaults to 0.
39
53
  compactify (bool): Whether to compactify the output. Defaults to True.
40
54
 
41
- Example:
55
+ ## Usage Examples:
42
56
 
43
57
  ```python
44
58
  # from cirq's "hello qubit" example
@@ -60,6 +74,30 @@ def load_circuit(
60
74
  # print the resulting IR
61
75
  main.print()
62
76
  ```
77
+
78
+ You can also compose kernel functions generated from circuits by passing in
79
+ and / or returning the respective quantum registers:
80
+
81
+ ```python
82
+ q = cirq.LineQubit.range(2)
83
+ circuit = cirq.Circuit(cirq.H(q[0]), cirq.CX(*q))
84
+
85
+ get_entangled_qubits = squin.cirq.load_circuit(
86
+ circuit, return_register=True, kernel_name="get_entangled_qubits"
87
+ )
88
+ get_entangled_qubits.print()
89
+
90
+ entangle_qubits = squin.cirq.load_circuit(
91
+ circuit, register_as_argument=True, kernel_name="entangle_qubits"
92
+ )
93
+
94
+ @squin.kernel
95
+ def main():
96
+ qreg = get_entangled_qubits()
97
+ qreg2 = squin.qubit.new(1)
98
+ entangle_qubits([qreg[1], qreg2[0]])
99
+ return squin.qubit.measure(qreg2)
100
+ ```
63
101
  """
64
102
 
65
103
  target = Squin(dialects=dialects, circuit=circuit)
@@ -71,16 +109,38 @@ def load_circuit(
71
109
  lineno_offset=lineno_offset,
72
110
  col_offset=col_offset,
73
111
  compactify=compactify,
112
+ register_as_argument=register_as_argument,
113
+ register_argument_name=register_argument_name,
74
114
  )
75
115
 
76
- # NOTE: no return value
77
- return_value = func.ConstantNone()
78
- body.blocks[0].stmts.append(return_value)
79
- body.blocks[0].stmts.append(func.Return(value_or_stmt=return_value))
116
+ if return_register:
117
+ return_value = target.qreg
118
+ else:
119
+ return_value = func.ConstantNone()
120
+ body.blocks[0].stmts.append(return_value)
121
+
122
+ return_node = func.Return(value_or_stmt=return_value)
123
+ body.blocks[0].stmts.append(return_node)
124
+
125
+ self_arg_name = kernel_name + "_self"
126
+ arg_names = [self_arg_name]
127
+ if register_as_argument:
128
+ args = (target.qreg.type,)
129
+ arg_names.append(register_argument_name)
130
+ else:
131
+ args = ()
132
+
133
+ # NOTE: add _self as argument; need to know signature before so do it after lowering
134
+ signature = func.Signature(args, return_node.value.type)
135
+ body.blocks[0].args.insert_from(
136
+ 0,
137
+ types.Generic(ir.Method, types.Tuple.where(signature.inputs), signature.output),
138
+ self_arg_name,
139
+ )
80
140
 
81
141
  code = func.Function(
82
142
  sym_name=kernel_name,
83
- signature=func.Signature((), types.NoneType),
143
+ signature=signature,
84
144
  body=body,
85
145
  )
86
146
 
@@ -88,7 +148,7 @@ def load_circuit(
88
148
  mod=None,
89
149
  py_func=None,
90
150
  sym_name=kernel_name,
91
- arg_names=[],
151
+ arg_names=arg_names,
92
152
  dialects=dialects,
93
153
  code=code,
94
154
  )
@@ -176,7 +236,12 @@ def emit_circuit(
176
236
  )
177
237
 
178
238
  emitter = EmitCirq(qubits=qubits)
179
- return emitter.run(mt, args=())
239
+
240
+ # Rewrite noise statements
241
+ mt_ = mt.similar(mt.dialects)
242
+ RewriteNoiseStmts(mt_.dialects)(mt_)
243
+
244
+ return emitter.run(mt_, args=())
180
245
 
181
246
 
182
247
  def dump_circuit(mt: ir.Method, qubits: Sequence[cirq.Qid] | None = None, **kwargs):
@@ -0,0 +1,49 @@
1
+ import cirq
2
+ from kirin.emit import EmitError
3
+ from kirin.interp import MethodTable, impl
4
+
5
+ from ... import noise
6
+ from .runtime import (
7
+ KronRuntime,
8
+ BasicOpRuntime,
9
+ OperatorRuntimeABC,
10
+ PauliStringRuntime,
11
+ )
12
+ from .emit_circuit import EmitCirq, EmitCirqFrame
13
+
14
+
15
+ @noise.dialect.register(key="emit.cirq")
16
+ class EmitCirqNoiseMethods(MethodTable):
17
+
18
+ @impl(noise.stmts.StochasticUnitaryChannel)
19
+ def stochastic_unitary_channel(
20
+ self,
21
+ emit: EmitCirq,
22
+ frame: EmitCirqFrame,
23
+ stmt: noise.stmts.StochasticUnitaryChannel,
24
+ ):
25
+ ops = frame.get(stmt.operators)
26
+ ps = frame.get(stmt.probabilities)
27
+
28
+ error_probabilities = {self._op_to_key(op_): p for op_, p in zip(ops, ps)}
29
+ cirq_op = cirq.asymmetric_depolarize(error_probabilities=error_probabilities)
30
+ return (BasicOpRuntime(cirq_op),)
31
+
32
+ @staticmethod
33
+ def _op_to_key(operator: OperatorRuntimeABC) -> str:
34
+ match operator:
35
+ case KronRuntime():
36
+ key_lhs = EmitCirqNoiseMethods._op_to_key(operator.lhs)
37
+ key_rhs = EmitCirqNoiseMethods._op_to_key(operator.rhs)
38
+ return key_lhs + key_rhs
39
+
40
+ case BasicOpRuntime():
41
+ return str(operator.gate)
42
+
43
+ case PauliStringRuntime():
44
+ return operator.string
45
+
46
+ case _:
47
+ raise EmitError(
48
+ f"Unexpected operator runtime in StochasticUnitaryChannel of type {type(operator).__name__} encountered!"
49
+ )
@@ -21,7 +21,10 @@ class OperatorRuntimeABC:
21
21
 
22
22
  def unsafe_apply(
23
23
  self, qubits: Sequence[cirq.Qid], adjoint: bool = False
24
- ) -> list[cirq.Operation]: ...
24
+ ) -> list[cirq.Operation]:
25
+ raise NotImplementedError(
26
+ f"Apply method needs to be implemented in {self.__class__.__name__}"
27
+ )
25
28
 
26
29
 
27
30
  @dataclass
@@ -38,6 +41,11 @@ class BasicOpRuntime(UnsafeOperatorRuntimeABC):
38
41
  def num_qubits(self) -> int:
39
42
  return self.gate.num_qubits()
40
43
 
44
+ def unsafe_apply(
45
+ self, qubits: Sequence[cirq.Qid], adjoint: bool = False
46
+ ) -> list[cirq.Operation]:
47
+ return [self.gate(*qubits)]
48
+
41
49
 
42
50
  @dataclass
43
51
  class UnitaryRuntime(BasicOpRuntime):
@@ -3,7 +3,7 @@ from typing import Any
3
3
  from dataclasses import field, dataclass
4
4
 
5
5
  import cirq
6
- from kirin import ir, lowering
6
+ from kirin import ir, types, lowering
7
7
  from kirin.rewrite import Walk, CFGCompactify
8
8
  from kirin.dialects import py, scf, ilist
9
9
 
@@ -25,27 +25,26 @@ class Squin(lowering.LoweringABC[CirqNode]):
25
25
  """Lower a cirq.Circuit object to a squin kernel"""
26
26
 
27
27
  circuit: cirq.Circuit
28
- qreg: qubit.New = field(init=False)
28
+ qreg: ir.SSAValue = field(init=False)
29
29
  qreg_index: dict[cirq.Qid, int] = field(init=False, default_factory=dict)
30
30
  next_qreg_index: int = field(init=False, default=0)
31
31
 
32
- def lower_qubit_getindex(self, state: lowering.State[CirqNode], qid: cirq.Qid):
33
- index = self.qreg_index.get(qid)
34
-
35
- if index is None:
36
- index = self.next_qreg_index
37
- self.qreg_index[qid] = index
38
- self.next_qreg_index += 1
32
+ def __post_init__(self):
33
+ # TODO: sort by cirq ordering
34
+ qbits = sorted(self.circuit.all_qubits())
35
+ self.qreg_index = {qid: idx for (idx, qid) in enumerate(qbits)}
39
36
 
37
+ def lower_qubit_getindex(self, state: lowering.State[CirqNode], qid: cirq.Qid):
38
+ index = self.qreg_index[qid]
40
39
  index_ssa = state.current_frame.push(py.Constant(index)).result
41
- qbit_getitem = state.current_frame.push(py.GetItem(self.qreg.result, index_ssa))
40
+ qbit_getitem = state.current_frame.push(py.GetItem(self.qreg, index_ssa))
42
41
  return qbit_getitem.result
43
42
 
44
43
  def lower_qubit_getindices(
45
44
  self, state: lowering.State[CirqNode], qids: list[cirq.Qid]
46
45
  ):
47
46
  qbits_getitem = [self.lower_qubit_getindex(state, qid) for qid in qids]
48
- qbits_stmt = ilist.New(values=qbits_getitem)
47
+ qbits_stmt = ilist.New(values=qbits_getitem, elem_type=qubit.QubitType)
49
48
  qbits_result = state.current_frame.get(qbits_stmt.name)
50
49
 
51
50
  if qbits_result is not None:
@@ -64,6 +63,8 @@ class Squin(lowering.LoweringABC[CirqNode]):
64
63
  lineno_offset: int = 0,
65
64
  col_offset: int = 0,
66
65
  compactify: bool = True,
66
+ register_as_argument: bool = False,
67
+ register_argument_name: str = "q",
67
68
  ) -> ir.Region:
68
69
 
69
70
  state = lowering.State(
@@ -73,16 +74,21 @@ class Squin(lowering.LoweringABC[CirqNode]):
73
74
  col_offset=col_offset,
74
75
  )
75
76
 
76
- with state.frame(
77
- [stmt],
78
- globals=globals,
79
- finalize_next=False,
80
- ) as frame:
81
- # NOTE: create a global register of qubits first
82
- # TODO: can there be a circuit without qubits?
83
- n_qubits = cirq.num_qubits(self.circuit)
84
- n = frame.push(py.Constant(n_qubits))
85
- self.qreg = frame.push(qubit.New(n_qubits=n.result))
77
+ with state.frame([stmt], globals=globals, finalize_next=False) as frame:
78
+
79
+ # NOTE: need a register of qubits before lowering statements
80
+ if register_as_argument:
81
+ # NOTE: register as argument to the kernel; we have freedom of choice for the name here
82
+ frame.curr_block.args.append_from(
83
+ ilist.IListType[qubit.QubitType, types.Any],
84
+ name=register_argument_name,
85
+ )
86
+ self.qreg = frame.curr_block.args[0]
87
+ else:
88
+ # NOTE: create a new register of appropriate size
89
+ n_qubits = len(self.qreg_index)
90
+ n = frame.push(py.Constant(n_qubits))
91
+ self.qreg = frame.push(qubit.New(n_qubits=n.result)).result
86
92
 
87
93
  self.visit(state, stmt)
88
94
 
@@ -1,3 +1,6 @@
1
+ from typing import Literal
2
+
3
+ from kirin.dialects import ilist
1
4
  from kirin.lowering import wraps
2
5
 
3
6
  from bloqade.squin.op.types import Op
@@ -18,11 +21,15 @@ def depolarize(p: float) -> Op: ...
18
21
 
19
22
 
20
23
  @wraps(stmts.SingleQubitPauliChannel)
21
- def single_qubit_pauli_channel(params: tuple[float, float, float]) -> Op: ...
24
+ def single_qubit_pauli_channel(
25
+ params: ilist.IList[float, Literal[3]] | list[float] | tuple[float, float, float],
26
+ ) -> Op: ...
22
27
 
23
28
 
24
29
  @wraps(stmts.TwoQubitPauliChannel)
25
- def two_qubit_pauli_channel(params: tuple[float, ...]) -> Op: ...
30
+ def two_qubit_pauli_channel(
31
+ params: ilist.IList[float, Literal[15]] | list[float] | tuple[float, ...],
32
+ ) -> Op: ...
26
33
 
27
34
 
28
35
  @wraps(stmts.QubitLoss)
@@ -58,12 +58,12 @@ class _RewriteNoiseStmts(RewriteRule):
58
58
  def rewrite_two_qubit_pauli_channel(
59
59
  self, node: TwoQubitPauliChannel
60
60
  ) -> RewriteResult:
61
- paulis = (X(), Y(), Z(), Identity(sites=1))
61
+ paulis = (Identity(sites=1), X(), Y(), Z())
62
62
  for op in paulis:
63
63
  op.insert_before(node)
64
64
 
65
- # NOTE: collect list so we can skip the last entry, which will be two identities
66
- combinations = list(itertools.product(paulis, repeat=2))[:-1]
65
+ # NOTE: collect list so we can skip the first entry, which will be two identities
66
+ combinations = list(itertools.product(paulis, repeat=2))[1:]
67
67
  operators: list[ir.SSAValue] = []
68
68
  for pauli_1, pauli_2 in combinations:
69
69
  op = Kron(pauli_1.result, pauli_2.result)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bloqade-circuit
3
- Version: 0.4.4
3
+ Version: 0.4.5
4
4
  Summary: The software development toolkit for neutral atom arrays.
5
5
  Author-email: Roger-luo <rluo@quera.com>, kaihsin <khwu@quera.com>, weinbe58 <pweinberg@quera.com>, johnzl-777 <jlong@quera.com>
6
6
  License-File: LICENSE
@@ -117,16 +117,17 @@ bloqade/squin/analysis/nsites/__init__.py,sha256=RlQg7ivczXCXG5lMeL3ipYKj2oJKC4T
117
117
  bloqade/squin/analysis/nsites/analysis.py,sha256=rIe1RU1MZRItcE2aB8DYahLrv73HfD3IHCX3E_EGQ1c,1773
118
118
  bloqade/squin/analysis/nsites/impls.py,sha256=Q2buVBmUX1ghj48_SoMO-_0BASGkfnILZZOOFRnwzIQ,2772
119
119
  bloqade/squin/analysis/nsites/lattice.py,sha256=ruh0808SHtj3ecuT-C3AZTsLY2j3DRhtezGiTZvcuVs,942
120
- bloqade/squin/cirq/__init__.py,sha256=AptJlelH-KJoFKLnq6phq68SrV785zWzi2NOfLH62ms,5994
121
- bloqade/squin/cirq/lowering.py,sha256=4-kZFH_qbBbV-c3-C9KhIB5o_cp_D8oxJrS8KicD_A8,14382
120
+ bloqade/squin/cirq/__init__.py,sha256=fxvBvwX5VNfDmqkeM4GHguLQh53k-PJVsz89Eu0wRXw,8552
121
+ bloqade/squin/cirq/lowering.py,sha256=ZrdulFJgzuOJHunCmPn9mpUEO1U2xq4gDTTNgSA4cSU,14914
122
122
  bloqade/squin/cirq/emit/emit_circuit.py,sha256=7puJ3eCFwE9VdPb9NAiSdyRNkoQPwo_uVykz9Yv7c14,3761
123
+ bloqade/squin/cirq/emit/noise.py,sha256=rESjGC_66s2Y4FwwYda4rY3mYHYjbqLlKE_vnqpZDYI,1534
123
124
  bloqade/squin/cirq/emit/op.py,sha256=z54NP5KqMxffXeFGWamEzvunpTNrxmYuluurk4j2-ps,4000
124
125
  bloqade/squin/cirq/emit/qubit.py,sha256=Z2HUsZmJ5F2uHCPGru81ux2usoX77KwtS97_cgeJRMI,1910
125
- bloqade/squin/cirq/emit/runtime.py,sha256=6_oHod-WK5yv0ae9xziQn-eh4Hn3MZNNqu4kJtOzPeY,6543
126
+ bloqade/squin/cirq/emit/runtime.py,sha256=dH7JSMt2mALPhVFjmZETQzvnTUQ3BFY5poe0YZpM5vQ,6819
126
127
  bloqade/squin/noise/__init__.py,sha256=HQl3FE0SZAGEX3qdveapCaMX391lgLvWeWnoE6Z2pYw,332
127
128
  bloqade/squin/noise/_dialect.py,sha256=2IR98J-lXm5Y3srP9g-FD4JC-qTq2seureM6mKKq1xg,63
128
- bloqade/squin/noise/_wrapper.py,sha256=0jD5va_go9jEW5rC6bZSWU30kjCha2-axFogPON3-V0,580
129
- bloqade/squin/noise/rewrite.py,sha256=SxIHgMDqYJXepiZDyukHWpe5yaFDSTG-yJ4JONNVr0o,3917
129
+ bloqade/squin/noise/_wrapper.py,sha256=b2HymlFi1BTgAZRaXvRnujJsoXkowmxQFPRBgZso82g,750
130
+ bloqade/squin/noise/rewrite.py,sha256=-IqFfDGnhuaFI-9b6PXjhSuiXFM1C5Qu0ibL5GvZldI,3917
130
131
  bloqade/squin/noise/stmts.py,sha256=rktxkIdjdPUYek0MYh9uh83otkl-7UoADCoWHWf57J8,1678
131
132
  bloqade/squin/op/__init__.py,sha256=QLlvZlb2nDq-RTalRp7xe0v82YgXURsvyovvMA6j2mw,807
132
133
  bloqade/squin/op/_dialect.py,sha256=66G1IYqmsqUEaCTyUqn2shSHmGYduiTU8GfDXcoMvw4,55
@@ -199,7 +200,7 @@ bloqade/visual/animation/runtime/atoms.py,sha256=EmjxhujLiHHPS_HtH_B-7TiqeHgvW5u
199
200
  bloqade/visual/animation/runtime/ppoly.py,sha256=JB9IP53N1w6adBJEue6J5Nmj818Id9JvrlgrmiQTU1I,1385
200
201
  bloqade/visual/animation/runtime/qpustate.py,sha256=rlmxQeJSvaohXrTpXQL5y-NJcpvfW33xPaYM1slv7cc,4270
201
202
  bloqade/visual/animation/runtime/utils.py,sha256=ju9IzOWX-vKwfpqUjlUKu3Ssr_UFPFFq-tzH_Nqyo_c,1212
202
- bloqade_circuit-0.4.4.dist-info/METADATA,sha256=WNmsRDnheZ4YMfpb6skDmZ3tTRy_8eh8OwdyYXtCSwY,3683
203
- bloqade_circuit-0.4.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
204
- bloqade_circuit-0.4.4.dist-info/licenses/LICENSE,sha256=S5GIJwR6QCixPA9wryYb44ZEek0Nz4rt_zLUqP05UbU,13160
205
- bloqade_circuit-0.4.4.dist-info/RECORD,,
203
+ bloqade_circuit-0.4.5.dist-info/METADATA,sha256=8glVTUO-kiKWRlb-6bKJBAf--1A6rjOJgI6o1BJGL6w,3683
204
+ bloqade_circuit-0.4.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
205
+ bloqade_circuit-0.4.5.dist-info/licenses/LICENSE,sha256=S5GIJwR6QCixPA9wryYb44ZEek0Nz4rt_zLUqP05UbU,13160
206
+ bloqade_circuit-0.4.5.dist-info/RECORD,,