Skip to content

Commit 28461af

Browse files
committed
Merge with david/571-kirin-upgrade-branch
1 parent 346eefb commit 28461af

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

src/bloqade/stim/groups.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
from kirin import ir
22
from kirin.passes import Fold, TypeInfer
3-
from kirin.dialects import func, debug, lowering
3+
from kirin.dialects import func, debug, ssacfg, lowering
44

55
from .dialects import gate, noise, collapse, auxiliary
66

77

88
@ir.dialect_group(
9-
[noise, gate, auxiliary, collapse, func, lowering.func, lowering.call, debug]
9+
[
10+
noise,
11+
gate,
12+
auxiliary,
13+
collapse,
14+
func,
15+
lowering.func,
16+
lowering.call,
17+
debug,
18+
ssacfg,
19+
]
1020
)
1121
def main(self):
1222
typeinfer_pass = TypeInfer(self)

test/stim/passes/test_squin_qubit_to_stim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from kirin import ir
77
from kirin.dialects import py
88

9-
from bloqade import qubit, squin as sq
9+
from bloqade import stim, qubit, squin as sq
1010
from bloqade.squin import kernel
1111
from bloqade.stim.emit import EmitStimMain
1212
from bloqade.stim.passes import SquinToStimPass

0 commit comments

Comments
 (0)