bloqade-circuit 0.2.3__py3-none-any.whl → 0.4.0__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.
- bloqade/analysis/address/impls.py +3 -2
- bloqade/pyqrack/device.py +1 -3
- bloqade/pyqrack/noise/native.py +8 -8
- bloqade/pyqrack/qasm2/core.py +4 -1
- bloqade/pyqrack/squin/op.py +7 -0
- bloqade/pyqrack/squin/qubit.py +5 -27
- bloqade/pyqrack/squin/runtime.py +18 -0
- bloqade/pyqrack/squin/wire.py +4 -22
- bloqade/pyqrack/task.py +13 -5
- bloqade/qasm2/__init__.py +1 -0
- bloqade/qasm2/_qasm_loading.py +151 -0
- bloqade/qasm2/dialects/core/__init__.py +9 -1
- bloqade/qasm2/dialects/expr/__init__.py +18 -1
- bloqade/{noise/native → qasm2/dialects/noise}/__init__.py +1 -7
- bloqade/qasm2/dialects/noise/_dialect.py +3 -0
- bloqade/{noise → qasm2/dialects/noise}/fidelity.py +4 -4
- bloqade/qasm2/dialects/noise/model.py +278 -0
- bloqade/{noise/native → qasm2/dialects/noise}/stmts.py +1 -1
- bloqade/qasm2/dialects/uop/__init__.py +39 -3
- bloqade/qasm2/dialects/uop/schedule.py +1 -1
- bloqade/qasm2/emit/impls/__init__.py +1 -0
- bloqade/qasm2/emit/impls/noise.py +89 -0
- bloqade/qasm2/emit/main.py +23 -4
- bloqade/qasm2/emit/target.py +19 -4
- bloqade/qasm2/noise.py +67 -0
- bloqade/qasm2/parse/__init__.py +7 -4
- bloqade/qasm2/parse/lowering.py +20 -130
- bloqade/qasm2/parse/qasm2.lark +1 -1
- bloqade/qasm2/passes/__init__.py +1 -0
- bloqade/qasm2/passes/fold.py +6 -0
- bloqade/qasm2/passes/glob.py +12 -8
- bloqade/qasm2/passes/noise.py +27 -16
- bloqade/qasm2/passes/parallel.py +9 -0
- bloqade/qasm2/passes/unroll_if.py +25 -0
- bloqade/qasm2/rewrite/__init__.py +3 -0
- bloqade/qasm2/rewrite/desugar.py +3 -2
- bloqade/qasm2/rewrite/native_gates.py +67 -4
- bloqade/qasm2/rewrite/noise/__init__.py +0 -0
- bloqade/qasm2/rewrite/{heuristic_noise.py → noise/heuristic_noise.py} +32 -62
- bloqade/{noise/native/rewrite.py → qasm2/rewrite/noise/remove_noise.py} +2 -2
- bloqade/qasm2/rewrite/split_ifs.py +66 -0
- bloqade/qbraid/lowering.py +8 -8
- bloqade/squin/__init__.py +7 -1
- bloqade/squin/analysis/nsites/__init__.py +1 -0
- bloqade/squin/analysis/nsites/impls.py +16 -1
- bloqade/squin/groups.py +4 -4
- bloqade/squin/lowering.py +27 -0
- bloqade/squin/noise/__init__.py +7 -26
- bloqade/squin/noise/_wrapper.py +25 -0
- bloqade/squin/op/__init__.py +34 -159
- bloqade/squin/op/_wrapper.py +105 -0
- bloqade/squin/op/stdlib.py +62 -0
- bloqade/squin/op/stmts.py +10 -0
- bloqade/squin/passes/__init__.py +1 -0
- bloqade/squin/passes/stim.py +68 -0
- bloqade/squin/qubit.py +32 -37
- bloqade/squin/rewrite/__init__.py +11 -0
- bloqade/squin/rewrite/desugar.py +65 -0
- bloqade/squin/rewrite/qubit_to_stim.py +61 -0
- bloqade/squin/rewrite/squin_measure.py +73 -0
- bloqade/squin/rewrite/stim_rewrite_util.py +153 -0
- bloqade/squin/rewrite/wire_identity_elimination.py +24 -0
- bloqade/squin/rewrite/wire_to_stim.py +52 -0
- bloqade/squin/rewrite/wrap_analysis.py +72 -0
- bloqade/squin/wire.py +5 -22
- bloqade/stim/__init__.py +40 -5
- bloqade/stim/_wrappers.py +18 -12
- bloqade/stim/dialects/__init__.py +1 -5
- bloqade/stim/dialects/{aux → auxiliary}/__init__.py +13 -1
- bloqade/stim/dialects/{aux → auxiliary}/emit.py +18 -3
- bloqade/stim/dialects/{aux → auxiliary}/stmts/__init__.py +1 -0
- bloqade/stim/dialects/{aux → auxiliary}/stmts/annotate.py +8 -0
- bloqade/stim/dialects/collapse/__init__.py +13 -2
- bloqade/stim/dialects/collapse/{emit.py → emit_str.py} +4 -2
- bloqade/stim/dialects/collapse/stmts/pp_measure.py +1 -1
- bloqade/stim/dialects/gate/__init__.py +16 -1
- bloqade/stim/dialects/gate/emit.py +10 -3
- bloqade/stim/dialects/gate/stmts/base.py +1 -1
- bloqade/stim/dialects/gate/stmts/pp.py +1 -1
- bloqade/stim/dialects/noise/emit.py +33 -2
- bloqade/stim/dialects/noise/stmts.py +29 -0
- bloqade/stim/emit/__init__.py +1 -1
- bloqade/stim/groups.py +4 -2
- bloqade/stim/parse/__init__.py +1 -0
- bloqade/stim/parse/lowering.py +686 -0
- {bloqade_circuit-0.2.3.dist-info → bloqade_circuit-0.4.0.dist-info}/METADATA +5 -3
- {bloqade_circuit-0.2.3.dist-info → bloqade_circuit-0.4.0.dist-info}/RECORD +95 -77
- bloqade/noise/__init__.py +0 -2
- bloqade/noise/native/_dialect.py +0 -3
- bloqade/noise/native/_wrappers.py +0 -34
- bloqade/noise/native/model.py +0 -346
- bloqade/qasm2/dialects/noise.py +0 -16
- bloqade/squin/rewrite/measure_desugar.py +0 -33
- /bloqade/stim/dialects/{aux → auxiliary}/_dialect.py +0 -0
- /bloqade/stim/dialects/{aux → auxiliary}/interp.py +0 -0
- /bloqade/stim/dialects/{aux → auxiliary}/lowering.py +0 -0
- /bloqade/stim/dialects/{aux → auxiliary}/stmts/const.py +0 -0
- /bloqade/stim/dialects/{aux → auxiliary}/types.py +0 -0
- /bloqade/stim/emit/{stim.py → stim_str.py} +0 -0
- {bloqade_circuit-0.2.3.dist-info → bloqade_circuit-0.4.0.dist-info}/WHEEL +0 -0
- {bloqade_circuit-0.2.3.dist-info → bloqade_circuit-0.4.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -5,158 +5,176 @@ bloqade/types.py,sha256=qmuryGmkKGGyxLCDI9niXEhwVrcdzy71myxDHnxqBws,447
|
|
|
5
5
|
bloqade/analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
bloqade/analysis/address/__init__.py,sha256=ed_05tCQgeCQsvC8O-2LVlpSiiYz2ebixr4xyxD-wRE,321
|
|
7
7
|
bloqade/analysis/address/analysis.py,sha256=u0acWZApnuH8ueO-_mHnNuyKCWglCcAajinCgz2-dt0,1872
|
|
8
|
-
bloqade/analysis/address/impls.py,sha256=
|
|
8
|
+
bloqade/analysis/address/impls.py,sha256=c3FMF2LLkV_fwWaolIRTV7ueXC9qwAR6PUW9kDQVd5w,6779
|
|
9
9
|
bloqade/analysis/address/lattice.py,sha256=dUq999feqPoBYkqEXe1hjHOn4TP_bkvKip8fyWQ-2-8,1755
|
|
10
10
|
bloqade/analysis/fidelity/__init__.py,sha256=iJkhoHvCMU9bKxQqgxIWKQWvpqNFRgNBI5DK8-4RAB8,59
|
|
11
11
|
bloqade/analysis/fidelity/analysis.py,sha256=G6JEYc8eeWJ9mwsbUAIzXuU2nrnTU4te41c04xE71gM,3218
|
|
12
|
-
bloqade/noise/__init__.py,sha256=sD0VwzGsSo7eP1A7D7kJkiNqD-YwPWM21Aly0X8NYgw,86
|
|
13
|
-
bloqade/noise/fidelity.py,sha256=w2aKQuEWOpUOtU5fqbEFgqRPyZImUSezEc4UoeF7d04,1640
|
|
14
|
-
bloqade/noise/native/__init__.py,sha256=XMhfZZCzxjsPWSuQRaDaSb9f8MtmhHXHWtOC0_A6sr0,692
|
|
15
|
-
bloqade/noise/native/_dialect.py,sha256=fV5OT4sUBJsP4qQTxmtQUUWrjLzzyAX7_97bpD3lDts,53
|
|
16
|
-
bloqade/noise/native/_wrappers.py,sha256=CuKCLf3mihyBY5dp_W_l8Y0Y1i9L0sZmsbLde37T5PY,733
|
|
17
|
-
bloqade/noise/native/model.py,sha256=x8j_J4kVYh9dlA1mBD8LopOKVsyuslZYwkIMhlQ3Imw,16541
|
|
18
|
-
bloqade/noise/native/rewrite.py,sha256=UhwdIXZx9utmoWcPRtM7uGaNwrfEKPue_PQkY1tP97Y,1063
|
|
19
|
-
bloqade/noise/native/stmts.py,sha256=spFEJl_0xHRGd71CRmLz7BEHRnyV5dl241QgpX6syKU,2357
|
|
20
12
|
bloqade/pyqrack/__init__.py,sha256=_EQJ4blQxqS1_Z6OTjmgSquFo1R_9rEjECRg4fH97hQ,794
|
|
21
13
|
bloqade/pyqrack/base.py,sha256=9z61PaaAFqCBBwkgsDZSr-qr9IQ5OJ_JUvltmJ7Bgls,4407
|
|
22
|
-
bloqade/pyqrack/device.py,sha256=
|
|
14
|
+
bloqade/pyqrack/device.py,sha256=cOdyT1k0b73QbOsEIu5KqxHW2OAWP86fi_3XGPhaWGA,7134
|
|
23
15
|
bloqade/pyqrack/reg.py,sha256=uTL07CT1R0xUsInLmwU9YuuNdV6lV0lCs1zhdUz1qIs,1660
|
|
24
16
|
bloqade/pyqrack/target.py,sha256=c78VtLWAiDNp_0sXwvVzhaEoeFsr1fUVsupxWuo6p3s,3661
|
|
25
|
-
bloqade/pyqrack/task.py,sha256=
|
|
17
|
+
bloqade/pyqrack/task.py,sha256=ydVso4wZQ1iIzgSBG0lDxClPTLcsZfkbnZk_1qFV95o,991
|
|
26
18
|
bloqade/pyqrack/noise/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
-
bloqade/pyqrack/noise/native.py,sha256=
|
|
19
|
+
bloqade/pyqrack/noise/native.py,sha256=BmRlRzqCzvSgfSsDlIjuB8L0gx4uaPqmPyfJ5-Ole6M,2751
|
|
28
20
|
bloqade/pyqrack/qasm2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
bloqade/pyqrack/qasm2/core.py,sha256=
|
|
21
|
+
bloqade/pyqrack/qasm2/core.py,sha256=bHtHc8VTB0OUPoCRIQuPDug5UMOqZHY0FJZEHd77eBo,3245
|
|
30
22
|
bloqade/pyqrack/qasm2/glob.py,sha256=EGe7sh9SuvpRW4V4rFcX6Gf7ot8iyThYbsdPeEBKzYM,865
|
|
31
23
|
bloqade/pyqrack/qasm2/parallel.py,sha256=ITetuXOH2KUDpDOBuFnJoz2DhduvyBC72cOAOOixTaM,1606
|
|
32
24
|
bloqade/pyqrack/qasm2/uop.py,sha256=bLZONsEK15ymFGIQwy7muQv-TX0mvLrECuMp1Y3XTfA,8612
|
|
33
25
|
bloqade/pyqrack/squin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
bloqade/pyqrack/squin/op.py,sha256=
|
|
35
|
-
bloqade/pyqrack/squin/qubit.py,sha256=
|
|
36
|
-
bloqade/pyqrack/squin/runtime.py,sha256=
|
|
37
|
-
bloqade/pyqrack/squin/wire.py,sha256=
|
|
38
|
-
bloqade/qasm2/__init__.py,sha256=
|
|
26
|
+
bloqade/pyqrack/squin/op.py,sha256=CY2qTYqFPwEceWt-iSiax6i_Bs2i9hQhzGR8ni_PmmA,4952
|
|
27
|
+
bloqade/pyqrack/squin/qubit.py,sha256=svQMbsLxv3yjiFMSRc4C7QGllzjtmlSWOsMY1mjTI8Q,2223
|
|
28
|
+
bloqade/pyqrack/squin/runtime.py,sha256=806S23bJKbh2xBuZ0yPAgjs7ZxDHB-zqQtNeA--x9fw,15349
|
|
29
|
+
bloqade/pyqrack/squin/wire.py,sha256=rqlAeU-r_EHOwJMqHrEAxpZ_rKsvUpwGG7MP4BW75Nw,1658
|
|
30
|
+
bloqade/qasm2/__init__.py,sha256=W9dR4Qnvigc7e7Ay7puSJHAIuiQk8vWqY-W64SMu5oU,515
|
|
31
|
+
bloqade/qasm2/_qasm_loading.py,sha256=1EFTt1YDkL8fsoSgSuqD1QcKO4EMFIGuBTX9HCnb6S0,4724
|
|
39
32
|
bloqade/qasm2/_wrappers.py,sha256=4x3fldC4sV2K_XZ0FPZOorQKAbs_7pualListXtak4A,11148
|
|
40
33
|
bloqade/qasm2/glob.py,sha256=dDZW2KYXi9e0JmEbpVJIJvQytVEr86G7eism9ghlABM,579
|
|
41
34
|
bloqade/qasm2/groups.py,sha256=3-BGCVqJm6ZDgQeDapac65OLedoskJMVHX78YBKV7jY,2531
|
|
35
|
+
bloqade/qasm2/noise.py,sha256=YXx-23eFHfGdae9C41dptUvlnu2pK7odT3_eaw3EvBc,2034
|
|
42
36
|
bloqade/qasm2/parallel.py,sha256=pBRCdhivu9CBADhKP46QMtnomOsFMA79J8OyMvqEu74,1169
|
|
43
37
|
bloqade/qasm2/types.py,sha256=bL_Hmo3ut9Cc6--ufyGu8pEZb3j9ZN_RnYuTY1UGSVc,837
|
|
44
38
|
bloqade/qasm2/dialects/__init__.py,sha256=wX99UBwncm0K0Q6yxbAtubXsj2RvAynJYH_5RAt_d54,182
|
|
45
39
|
bloqade/qasm2/dialects/glob.py,sha256=l1up9Hgw_1Ust4VPDoTh85WaasB4Y7_sAEpJLsva0GE,1615
|
|
46
40
|
bloqade/qasm2/dialects/indexing.py,sha256=yp5xNbfad_MSJmpQGqC_5cNak9PPeoTLckiL9NsIF9k,2350
|
|
47
41
|
bloqade/qasm2/dialects/inline.py,sha256=tJPhG0gVy8wxR2K4fBeSNuQtaeS1ORB81gGauogQAf0,2527
|
|
48
|
-
bloqade/qasm2/dialects/noise.py,sha256=epc1jvyOV9FrNr3SFqQ07OMUv0yut2ak-QWzK0mrXG4,484
|
|
49
42
|
bloqade/qasm2/dialects/parallel.py,sha256=5Fi15i05iLb-S0_74Aj4yWDhUolLIWFb-3iOho8x7cE,3681
|
|
50
|
-
bloqade/qasm2/dialects/core/__init__.py,sha256=
|
|
43
|
+
bloqade/qasm2/dialects/core/__init__.py,sha256=rzYkYvHd-z0CU_Kabac2T9B0TI1-ZxdyS8WVT6JXP7E,301
|
|
51
44
|
bloqade/qasm2/dialects/core/_dialect.py,sha256=KYguYHVdyIjPjAyM4GApBUk4slMXmRTMPNfE0lEE7rc,57
|
|
52
45
|
bloqade/qasm2/dialects/core/_emit.py,sha256=HhMKhfl9pL3cb4gr6TCGP2GJ0PchyyJ-ZcvE7MVeqwQ,2540
|
|
53
46
|
bloqade/qasm2/dialects/core/_typeinfer.py,sha256=27qciyhU4TNJ2NPBvDc7mjkOK-x8AzMjq20OXqsRtYQ,671
|
|
54
47
|
bloqade/qasm2/dialects/core/address.py,sha256=jUAAyuxrdVYqgqBN97dcCd0IjhsPf1XeTRsdZFfK6DA,1072
|
|
55
48
|
bloqade/qasm2/dialects/core/stmts.py,sha256=MOzll2u4mPdqtUI_aHkYxx3U-SsveEM8W85OU34FqHk,3826
|
|
56
|
-
bloqade/qasm2/dialects/expr/__init__.py,sha256=
|
|
49
|
+
bloqade/qasm2/dialects/expr/__init__.py,sha256=8A7VX0ox0jIcDL_ufHlC9wZMraZw81f5GkcZKA-7nRY,451
|
|
57
50
|
bloqade/qasm2/dialects/expr/_dialect.py,sha256=yu46u8FX8tTWAlMHv_YIOXZYiAuWYzB7-dbgGIhQayU,57
|
|
58
51
|
bloqade/qasm2/dialects/expr/_emit.py,sha256=GlT1ZuunltKh0wjfevNu5hig74jwxW8JFoI-oQ2GqWA,3270
|
|
59
52
|
bloqade/qasm2/dialects/expr/_from_python.py,sha256=4wB9J0gMRZq1HnMzAjn6sk6qVpS2gWTlIrTZKKGOMQ8,3432
|
|
60
53
|
bloqade/qasm2/dialects/expr/_interp.py,sha256=dQLDcWABpo107BtC6d18L5NmXYlRPPedGtGqlezRWJw,2395
|
|
61
54
|
bloqade/qasm2/dialects/expr/stmts.py,sha256=bAsT4iT-L5I-NvwdWYxquoSHPy6XsDboo-xCtek8v5g,8582
|
|
62
|
-
bloqade/qasm2/dialects/
|
|
55
|
+
bloqade/qasm2/dialects/noise/__init__.py,sha256=4YSXTFjt7TiQd0jqMZy2k6pfKbLyTamQlQ--jPTziLQ,512
|
|
56
|
+
bloqade/qasm2/dialects/noise/_dialect.py,sha256=onK6l3wbM0IHwf3WMiWy7pDRQG0DyLTOzplBuj56psA,58
|
|
57
|
+
bloqade/qasm2/dialects/noise/fidelity.py,sha256=Ft-Benmg1mvWYTPE_DkjMZP5-JfmiotIU_WfAWq8sCw,1632
|
|
58
|
+
bloqade/qasm2/dialects/noise/model.py,sha256=mHfVqig-pzbyXU4HjKSqPxZULvZQcedzY8WIruH1tr8,12867
|
|
59
|
+
bloqade/qasm2/dialects/noise/stmts.py,sha256=G2zHBIBxpJigh9IMy7_Cj3rJRB1m0Hqf9h3i7h-8X_4,2351
|
|
60
|
+
bloqade/qasm2/dialects/uop/__init__.py,sha256=M2jpSIExxlgKX0l08-KzvRKeVBUuFPlyLmmWosHWIdk,735
|
|
63
61
|
bloqade/qasm2/dialects/uop/_dialect.py,sha256=mns7toJRMnx38Q5IpScFMUZyA3MwSuEJkV003zudsJA,56
|
|
64
62
|
bloqade/qasm2/dialects/uop/_emit.py,sha256=Bknauu187WkoHNOMePYQm3WckKBFigmufsv0eWqGahk,7992
|
|
65
|
-
bloqade/qasm2/dialects/uop/schedule.py,sha256=
|
|
63
|
+
bloqade/qasm2/dialects/uop/schedule.py,sha256=gkHXvLACOZlh_pa5wlol3C5L-0D0c7Ttqjrr6VqgVCw,2258
|
|
66
64
|
bloqade/qasm2/dialects/uop/stmts.py,sha256=T22mDA9TgPpHnxh9E3lKv5MGihgyAQ6ontDQ1XdWmtU,7460
|
|
67
65
|
bloqade/qasm2/emit/__init__.py,sha256=Fl9WWMoSyAt3UGAsvCPwnbelhPiPdWDjTpkr8XAJTHc,35
|
|
68
66
|
bloqade/qasm2/emit/base.py,sha256=Ln7gwnstszmrdAe4SmI5_7hnSgaSRgDwSYZbpI4l3Dg,2342
|
|
69
67
|
bloqade/qasm2/emit/gate.py,sha256=zVxVQEf_M8pzfbQ1kMEn3e5PiDQAQvEp6CSsFBHRr0w,2684
|
|
70
|
-
bloqade/qasm2/emit/main.py,sha256=
|
|
71
|
-
bloqade/qasm2/emit/target.py,sha256=
|
|
72
|
-
bloqade/qasm2/
|
|
68
|
+
bloqade/qasm2/emit/main.py,sha256=OGfOWnBEmd3vwoQYpx8iRGyqJchd-cLZXmYPhhd2xl8,4325
|
|
69
|
+
bloqade/qasm2/emit/target.py,sha256=V4GXYixErdXnls7yTQy4xX7ygD259yTFhcV0EGgQKrU,6081
|
|
70
|
+
bloqade/qasm2/emit/impls/__init__.py,sha256=ynptLB_449irP9_9u2h3KXmOqF8YvH_NH08NnVoc7zQ,46
|
|
71
|
+
bloqade/qasm2/emit/impls/noise.py,sha256=-N9PmCbz8MwC6xtd55GOpjDoWMyJPJBMVDWT3G83Ads,2779
|
|
72
|
+
bloqade/qasm2/parse/__init__.py,sha256=01tlLfrR015nAAPWw3i_Cs9IXsShpXMnJMagcJ_Vuik,986
|
|
73
73
|
bloqade/qasm2/parse/ast.py,sha256=a48ssf0D_xaE-27PsyeBD5lBvwN2Dojj-RWIBhy7jJE,2904
|
|
74
74
|
bloqade/qasm2/parse/build.py,sha256=2CibD1ZRX3_aknmhb5XvFQcI2sBOn97DlQHomb9CMEw,10621
|
|
75
|
-
bloqade/qasm2/parse/lowering.py,sha256=
|
|
75
|
+
bloqade/qasm2/parse/lowering.py,sha256=CwwCdaatbc5CiSmVcltGko2kblX60COuJDzqQtv-L4E,21274
|
|
76
76
|
bloqade/qasm2/parse/parser.py,sha256=fxqp65dv8NnXE-Ie7ryLESfSH3Xr0unx1EBQysctiHM,121
|
|
77
77
|
bloqade/qasm2/parse/print.py,sha256=PaigQ5RbcfhOteWvDdQHoKsTE3tcNefpVfh1sp5eZEI,8973
|
|
78
|
-
bloqade/qasm2/parse/qasm2.lark,sha256=
|
|
78
|
+
bloqade/qasm2/parse/qasm2.lark,sha256=IYrBydUoVLn1VCNDPP5uNN5BHDET3fQ2yG11cOy900k,2238
|
|
79
79
|
bloqade/qasm2/parse/visitor.py,sha256=W4NUkBw97e3Z4Y1ek6jVNn-5lLVd3A5HXxc-FYTGYbY,427
|
|
80
80
|
bloqade/qasm2/parse/visitor.pyi,sha256=JafCo1QztL6fvmWtJXu4dlqwbTJ6iLVrSa8L-Zd72t4,1851
|
|
81
|
-
bloqade/qasm2/passes/__init__.py,sha256=
|
|
82
|
-
bloqade/qasm2/passes/fold.py,sha256=
|
|
83
|
-
bloqade/qasm2/passes/glob.py,sha256=
|
|
81
|
+
bloqade/qasm2/passes/__init__.py,sha256=9vz9F9Mgb5OFgnPWqw8pOJ-7r-tShoa7XevJ41ZmPXM,262
|
|
82
|
+
bloqade/qasm2/passes/fold.py,sha256=NMT9MVpc7eWtqmdCztcztrfVewk5SCz5OTDMjSNPGaE,3046
|
|
83
|
+
bloqade/qasm2/passes/glob.py,sha256=qGmUTJSvDPf6qatapg4U69bTRKOAwZEHcFdts3mRxjI,3563
|
|
84
84
|
bloqade/qasm2/passes/lift_qubits.py,sha256=VgIuqaZecozA3cwGAq8Nzqdv8IqQlzyQv2XlaqY4H4g,759
|
|
85
|
-
bloqade/qasm2/passes/noise.py,sha256=
|
|
86
|
-
bloqade/qasm2/passes/parallel.py,sha256=
|
|
85
|
+
bloqade/qasm2/passes/noise.py,sha256=w7U91jOAabcCZZXm8uPxojsVRtcIkxtpZS2hwEDsDN0,2709
|
|
86
|
+
bloqade/qasm2/passes/parallel.py,sha256=nvlCxu8LbIBez5LGXVVuKSa6KTC3DzK1mYUI3-kGSLk,5174
|
|
87
87
|
bloqade/qasm2/passes/py2qasm.py,sha256=PmdIrViQ_4PEYBKE5XEk4oqFO2sLF2s_2Etz6R9CBoQ,2167
|
|
88
88
|
bloqade/qasm2/passes/qasm2py.py,sha256=beocXUoO2iM6sX85ML1eK8hp9_s5oupw8tqHWV1cDCo,2138
|
|
89
|
-
bloqade/qasm2/
|
|
90
|
-
bloqade/qasm2/rewrite/
|
|
89
|
+
bloqade/qasm2/passes/unroll_if.py,sha256=NBqgOcOJ4bEo9Osb2K-UATZVb77ckSgcWFpKlSkAnxI,771
|
|
90
|
+
bloqade/qasm2/rewrite/__init__.py,sha256=2_3_FdYa5bzZ5YPnbaz9xQE2A8CfgFivufW6D0PukRc,690
|
|
91
|
+
bloqade/qasm2/rewrite/desugar.py,sha256=ABri2ubImrgYUWtuFj0EEh5FcICqjtKUSS2Ue4WlMdA,1007
|
|
91
92
|
bloqade/qasm2/rewrite/glob.py,sha256=JzGDIY8ME9ZhNQ0g4d0FTpJuJlPu6G19myzo4zb6f_M,3119
|
|
92
|
-
bloqade/qasm2/rewrite/heuristic_noise.py,sha256=RhH8wnNtV4XG3FSnHunCY8WEY4e01rn76fAfpHYQ--A,8974
|
|
93
93
|
bloqade/qasm2/rewrite/insert_qubits.py,sha256=PpYNlJAl-TVtC1MJxIzOQWDetgW8OPXe6cLN1SMg2w0,1187
|
|
94
|
-
bloqade/qasm2/rewrite/native_gates.py,sha256=
|
|
94
|
+
bloqade/qasm2/rewrite/native_gates.py,sha256=GVutT1jf_gv9qaR5fLqjcmxcqCfMZTiQyg4Fq-TlmFM,18684
|
|
95
95
|
bloqade/qasm2/rewrite/parallel_to_uop.py,sha256=_banEox20L_qU1GTvKjSSDBkFg49UlSE-POuTCKnrzY,2351
|
|
96
96
|
bloqade/qasm2/rewrite/register.py,sha256=sghKMBlsls9YLO6baXZ_m692aNpWgMdxZhinNznQDks,1541
|
|
97
|
+
bloqade/qasm2/rewrite/split_ifs.py,sha256=7MTDFREG0hSSNBzU8Gpc9S-D-vHlBHcE6Zw2Zr7auY0,2053
|
|
97
98
|
bloqade/qasm2/rewrite/uop_to_parallel.py,sha256=E3nME3UFaJjFQvU-xtK_BKRMfFK2kAJ3U1zwtT4PUJk,13014
|
|
99
|
+
bloqade/qasm2/rewrite/noise/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
100
|
+
bloqade/qasm2/rewrite/noise/heuristic_noise.py,sha256=7C7yYC66HLZPlTynXwfZ5lKnJkLnDGLT7lVWxREozuc,7851
|
|
101
|
+
bloqade/qasm2/rewrite/noise/remove_noise.py,sha256=rnalZ1igiTpCFJ9Z3PRdzcx-qnkkALv6iQO-_yz39kM,1097
|
|
98
102
|
bloqade/qbraid/__init__.py,sha256=V-Co_nhH03UCV4c5MGkBnhHcVwJ2Ngrl6KZnSwo91b8,80
|
|
99
|
-
bloqade/qbraid/lowering.py,sha256=
|
|
103
|
+
bloqade/qbraid/lowering.py,sha256=84RsPONWeQ_2beyOWBNoJbGFKuaMhsWtRiPivTCZ-Q0,11985
|
|
100
104
|
bloqade/qbraid/schema.py,sha256=dTPexUFOiBNBnFv0GEbGh6jpIbMIFHk4hFXmXbeihxA,7854
|
|
101
105
|
bloqade/qbraid/simulation_result.py,sha256=zdCJcAdbQkEDzFFuC2q3gqOFTOLAXHk4wh8RRDB6cgc,3956
|
|
102
106
|
bloqade/qbraid/target.py,sha256=LcFHHyLe74yBmrHI9251xHgLN_nUz35lN8RPNwrT6mI,3149
|
|
103
|
-
bloqade/squin/__init__.py,sha256=
|
|
104
|
-
bloqade/squin/groups.py,sha256=
|
|
105
|
-
bloqade/squin/
|
|
106
|
-
bloqade/squin/
|
|
107
|
+
bloqade/squin/__init__.py,sha256=8W5Z26BFrR3XRP6yb6IWDA5tZiXMhNstevx5kP3pP5k,169
|
|
108
|
+
bloqade/squin/groups.py,sha256=kFS9WtDC0NDRb4XUfNP8HZdrS961uk39XAAKlufJykA,1289
|
|
109
|
+
bloqade/squin/lowering.py,sha256=w-GyOKYZHHKCGA2slcgWNS97Q_znQU65PeYxEIkvChM,816
|
|
110
|
+
bloqade/squin/qubit.py,sha256=psIZPtbQHsiToCXcT4wuuaZzEifaPVvk_SWrsgPbNwg,5067
|
|
111
|
+
bloqade/squin/wire.py,sha256=kRmpC7P6qIOZOsuFJHJQyeNsEWcU2Of4ZgcdsMESnKA,3746
|
|
107
112
|
bloqade/squin/analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
113
|
bloqade/squin/analysis/schedule.py,sha256=buuC4bFuLuaSDK2BZfkRkh8ZdNicz9HkEv3FAnsDViE,7880
|
|
109
|
-
bloqade/squin/analysis/nsites/__init__.py,sha256=
|
|
114
|
+
bloqade/squin/analysis/nsites/__init__.py,sha256=RlQg7ivczXCXG5lMeL3ipYKj2oJKC4THu8orYf5PBYs,263
|
|
110
115
|
bloqade/squin/analysis/nsites/analysis.py,sha256=rIe1RU1MZRItcE2aB8DYahLrv73HfD3IHCX3E_EGQ1c,1773
|
|
111
|
-
bloqade/squin/analysis/nsites/impls.py,sha256=
|
|
116
|
+
bloqade/squin/analysis/nsites/impls.py,sha256=OaKuAoZ0EAorStYDZxzgc6Dk42kuj19MLkqHWG1MEQM,2592
|
|
112
117
|
bloqade/squin/analysis/nsites/lattice.py,sha256=ruh0808SHtj3ecuT-C3AZTsLY2j3DRhtezGiTZvcuVs,942
|
|
113
|
-
bloqade/squin/noise/__init__.py,sha256=
|
|
118
|
+
bloqade/squin/noise/__init__.py,sha256=K7wHkzUxWbLF-XQPCAlXY7izz-bS7LJXt2G3GjlkEQc,218
|
|
114
119
|
bloqade/squin/noise/_dialect.py,sha256=2IR98J-lXm5Y3srP9g-FD4JC-qTq2seureM6mKKq1xg,63
|
|
120
|
+
bloqade/squin/noise/_wrapper.py,sha256=fHytpR6kINTPnaTfmMa_GRn4geBQkbEGVFRE60V0Zko,474
|
|
115
121
|
bloqade/squin/noise/stmts.py,sha256=0XvBdZFkjMABUkaj5Fry8oQ8QmWzoZggX1aecvWBnVk,1607
|
|
116
|
-
bloqade/squin/op/__init__.py,sha256=
|
|
122
|
+
bloqade/squin/op/__init__.py,sha256=5OBgT4E44Cy0DNF3yRbXGXkiB8VAJtr48x8hDQEquH4,741
|
|
117
123
|
bloqade/squin/op/_dialect.py,sha256=66G1IYqmsqUEaCTyUqn2shSHmGYduiTU8GfDXcoMvw4,55
|
|
124
|
+
bloqade/squin/op/_wrapper.py,sha256=5pqbKGeNWoYQIPa1xkKBr8z5waxwmAm3AV4efGSRT_s,1714
|
|
118
125
|
bloqade/squin/op/number.py,sha256=yujWUqLrOAr8i8OBDsiS5M882wV7t08u345NgNA6TUc,95
|
|
119
126
|
bloqade/squin/op/rewrite.py,sha256=Itxz_hTAPNLyLYeLS0PCVk143J1Z558UR7N9-urbnoU,1327
|
|
120
|
-
bloqade/squin/op/
|
|
127
|
+
bloqade/squin/op/stdlib.py,sha256=4UFK3wKImpums2v5a9OFKuVvz2TLYbYwidg3JYYEi2o,1073
|
|
128
|
+
bloqade/squin/op/stmts.py,sha256=0QMB3YC_YLr9CfNQiNapSRRT7V5uU8_DVLy-u8Oq9qw,5761
|
|
121
129
|
bloqade/squin/op/traits.py,sha256=jjsnzWtPtmQK7K3H_D2fvc8XiW1Y3EMBcgeyPax2sjc,1065
|
|
122
130
|
bloqade/squin/op/types.py,sha256=2am1KC9FHBl__5q_87hTXrSdx1KMkcEUBeZLSrBZQEw,617
|
|
123
|
-
bloqade/squin/
|
|
124
|
-
bloqade/squin/
|
|
125
|
-
bloqade/
|
|
126
|
-
bloqade/
|
|
127
|
-
bloqade/
|
|
128
|
-
bloqade/
|
|
129
|
-
bloqade/
|
|
130
|
-
bloqade/
|
|
131
|
-
bloqade/
|
|
132
|
-
bloqade/
|
|
133
|
-
bloqade/stim/
|
|
134
|
-
bloqade/stim/
|
|
135
|
-
bloqade/stim/
|
|
136
|
-
bloqade/stim/dialects/
|
|
137
|
-
bloqade/stim/dialects/
|
|
138
|
-
bloqade/stim/dialects/
|
|
131
|
+
bloqade/squin/passes/__init__.py,sha256=Bhog-wZBtToNJXfhlYa6S7tE6OoppyRibjMl5JBfY58,45
|
|
132
|
+
bloqade/squin/passes/stim.py,sha256=VWv3hhfizCWz5sIwwdFt3flWHLzG428evLGIcX8E36Y,1992
|
|
133
|
+
bloqade/squin/rewrite/__init__.py,sha256=0-9m1cbvFRgjZpQ700NEjW1uKvwZPPbrmUwylhgOjUw,457
|
|
134
|
+
bloqade/squin/rewrite/desugar.py,sha256=fnxchVHIbLx96cv-g_jK7NCVV8t8mo52rs00JaPG7FM,1846
|
|
135
|
+
bloqade/squin/rewrite/qubit_to_stim.py,sha256=fZC9voSAgjNwZv4wYdJ1Qkd55049n8rc7gpujvdQHEc,1976
|
|
136
|
+
bloqade/squin/rewrite/squin_measure.py,sha256=E5HVkLaBcsT-4dy1MN3BjdkOmqXzeTO4clZcwKRd66k,2494
|
|
137
|
+
bloqade/squin/rewrite/stim_rewrite_util.py,sha256=y6CsosZXgAXc0enWPcRUt1uwxm09LBoR6mvl2Y5bHbs,5161
|
|
138
|
+
bloqade/squin/rewrite/wire_identity_elimination.py,sha256=Cscu8yaSslPuW04HvbXx4HJ3JzdUZNUMyFqcvuc4sxY,795
|
|
139
|
+
bloqade/squin/rewrite/wire_to_stim.py,sha256=PbXjwaF-Z2JioXALKx76uGkYr6-xy20zZFotPeDX-lY,1699
|
|
140
|
+
bloqade/squin/rewrite/wrap_analysis.py,sha256=OoKoS0zFLjfCnn4_fK4bgpQ_ueAEiHl1UmfNWhruxMc,2069
|
|
141
|
+
bloqade/stim/__init__.py,sha256=BbMeLjeIW29xuD6JB0cWG_g0qaYIy4xXbloDqvqbT7A,887
|
|
142
|
+
bloqade/stim/_wrappers.py,sha256=KBIIOaeYPnhR3SJSNHcEzihLMcph2tL2mRKhEH47Je8,3939
|
|
143
|
+
bloqade/stim/groups.py,sha256=Fx8G698BGO7hR8OwpPXGUEYdW4uCCPwbMp_3fJAqa8M,585
|
|
144
|
+
bloqade/stim/dialects/__init__.py,sha256=A1Sq0jg8wi6MjRkzmuSBnHmO3EraD0pDFWz-dO6c6v8,89
|
|
145
|
+
bloqade/stim/dialects/auxiliary/__init__.py,sha256=6f57a8k2-QBtqaB0GN8FxxTBlG82oZQbVIOxxq975g4,692
|
|
146
|
+
bloqade/stim/dialects/auxiliary/_dialect.py,sha256=GExjMgzF9HV7IA25Kbl1K2i5g7aJAhdifIdrIDrvBVY,55
|
|
147
|
+
bloqade/stim/dialects/auxiliary/emit.py,sha256=Flj5Q5jw8KkuHHrgU_LkiDSVi93DTznAtmum7A3uB6Y,3305
|
|
148
|
+
bloqade/stim/dialects/auxiliary/interp.py,sha256=4CqEAxcr3ApDBbmmJ4yANSoiNR_nie2wHarCqOR-2bY,957
|
|
149
|
+
bloqade/stim/dialects/auxiliary/lowering.py,sha256=4dxRZHGp_18EMVlYuZQFSzg4MIOBriF5HjexT9Px2xc,1443
|
|
150
|
+
bloqade/stim/dialects/auxiliary/types.py,sha256=1l2YdJ-u9y0wpBfxh4OAlvmRAUnrmcDjDagoW2GyVaQ,314
|
|
151
|
+
bloqade/stim/dialects/auxiliary/stmts/__init__.py,sha256=VxLBnqlZngabs5vn3PiRNRXBBDueTCTmJ2wgWEertrA,371
|
|
152
|
+
bloqade/stim/dialects/auxiliary/stmts/annotate.py,sha256=NZT4AAW0lmwyHR31cmZI8aQNRsp5soeE36s9nBrcOmU,1759
|
|
153
|
+
bloqade/stim/dialects/auxiliary/stmts/const.py,sha256=nfx2aFTPBTCfKriANbzDUWjP9wgnWC5Phkfl2aUPyXY,3296
|
|
154
|
+
bloqade/stim/dialects/collapse/__init__.py,sha256=MhlEWJR_mJI3teoip1N8MlHk2C68seJELXwmyjyx_ns,305
|
|
139
155
|
bloqade/stim/dialects/collapse/_dialect.py,sha256=F5uplH7WL9ZQatEp0ZMvgLWX1k9moAWW879LTNwnHH0,60
|
|
140
|
-
bloqade/stim/dialects/collapse/
|
|
156
|
+
bloqade/stim/dialects/collapse/emit_str.py,sha256=4Vlhtq8BKMMuZLQ-ayUGJTuOs4YJ1rGurPZBZxBQJcU,1879
|
|
141
157
|
bloqade/stim/dialects/collapse/stmts/__init__.py,sha256=6wf-1HIdajz_hiYXh5j0QftsAtyaBtpp826d0UdYysI,189
|
|
142
158
|
bloqade/stim/dialects/collapse/stmts/measure.py,sha256=hr7jGgA4AoaCy62tmVWqKUnbXol2X1jAxm_jkEjKdXs,918
|
|
143
|
-
bloqade/stim/dialects/collapse/stmts/pp_measure.py,sha256=
|
|
159
|
+
bloqade/stim/dialects/collapse/stmts/pp_measure.py,sha256=AneDEeWb0mXJRYN5LuKDqwxstkGTIW_-vhadQRIaZ4c,524
|
|
144
160
|
bloqade/stim/dialects/collapse/stmts/reset.py,sha256=4fPSdM_ZiivuUn4uiZGiZQ9swolDir7Dl9lhMkZbspo,473
|
|
145
|
-
bloqade/stim/dialects/gate/__init__.py,sha256=
|
|
161
|
+
bloqade/stim/dialects/gate/__init__.py,sha256=5Y0BTlLOuW-Ud4LwAC_CUuMwxa04LKj4CTKgQbiL8yg,347
|
|
146
162
|
bloqade/stim/dialects/gate/_dialect.py,sha256=78_dThliFZG9xSwYhTdibxP3vefHpEDUawtZqb9X3uA,56
|
|
147
|
-
bloqade/stim/dialects/gate/emit.py,sha256=
|
|
163
|
+
bloqade/stim/dialects/gate/emit.py,sha256=HGnko9_nV6jl0kOI_dBWWNQDjySo14jAFBsg-2lTVOU,2869
|
|
148
164
|
bloqade/stim/dialects/gate/stmts/__init__.py,sha256=QJgmpArJwM9TXgB95AsEvet630gITtYOwRptnhj9a8U,293
|
|
149
|
-
bloqade/stim/dialects/gate/stmts/base.py,sha256=
|
|
165
|
+
bloqade/stim/dialects/gate/stmts/base.py,sha256=MK7Zu-Kys_64O0nXAkPzlHEnWYevBGm3FRHhJw33rrE,748
|
|
150
166
|
bloqade/stim/dialects/gate/stmts/clifford_1q.py,sha256=Sj1Nf9AA_WWazGTg5kzFRTaLRIj3Edj657j0B8dybdI,896
|
|
151
167
|
bloqade/stim/dialects/gate/stmts/clifford_2q.py,sha256=cb3BVSkOt5SiRq4D4WkbuUbEouK3MwDxQIhAF0cvZbo,239
|
|
152
168
|
bloqade/stim/dialects/gate/stmts/control_2q.py,sha256=gZRtkpgAkiUFqx5Led2t1YjYblEeBMdSQU3DPMGveoM,415
|
|
153
|
-
bloqade/stim/dialects/gate/stmts/pp.py,sha256=
|
|
169
|
+
bloqade/stim/dialects/gate/stmts/pp.py,sha256=yUNCrkYBM7wUCvtRqwP9_HYX0HsHVt6JZR4efM05838,487
|
|
154
170
|
bloqade/stim/dialects/noise/__init__.py,sha256=WoDdIZnxelk8REiIWDKcrEW79xwISdTZlqlTjURb71Q,138
|
|
155
171
|
bloqade/stim/dialects/noise/_dialect.py,sha256=SVUjAqBoGnxo13JlAlsxulIMo1QzfJb4SMSrFaCnfP4,57
|
|
156
|
-
bloqade/stim/dialects/noise/emit.py,sha256=
|
|
157
|
-
bloqade/stim/dialects/noise/stmts.py,sha256=
|
|
158
|
-
bloqade/stim/emit/__init__.py,sha256=
|
|
159
|
-
bloqade/stim/emit/
|
|
172
|
+
bloqade/stim/dialects/noise/emit.py,sha256=V44Xs6Z-64ZLB-6hhjRYjqlQeqpXPsiZS6eHkargipM,2909
|
|
173
|
+
bloqade/stim/dialects/noise/stmts.py,sha256=0CV9aHUPo8ASdQmcpf8Lv0fGnEMl2xSr4f64DjiYPKQ,3582
|
|
174
|
+
bloqade/stim/emit/__init__.py,sha256=N2dPQY7OyqPwHAStDeOgYg2yfxqxMOz-N7pD5Z4JwlI,73
|
|
175
|
+
bloqade/stim/emit/stim_str.py,sha256=JyEBoIhLQASogZcUWHI9tMD4JoXYrEqUr2qaZ30gZdc,1491
|
|
176
|
+
bloqade/stim/parse/__init__.py,sha256=l2DjReB2KkgrDjP_4nP6RnoziiOewoSeZfTno1sVYTw,59
|
|
177
|
+
bloqade/stim/parse/lowering.py,sha256=L-IcR_exlxsTVv4SQ0bhzIF4_L82P-GEdK6qRd6B86Y,23723
|
|
160
178
|
bloqade/visual/__init__.py,sha256=Y7d0YgovKhUFzjMeDvt0wGRUZ3re3SY6iO3e8xHXrr4,37
|
|
161
179
|
bloqade/visual/animation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
162
180
|
bloqade/visual/animation/animate.py,sha256=NSKs3YDWgTZH2-Tpx3cP1bBcIEWTEPqK5UFkY_IF_3k,8927
|
|
@@ -168,7 +186,7 @@ bloqade/visual/animation/runtime/atoms.py,sha256=EmjxhujLiHHPS_HtH_B-7TiqeHgvW5u
|
|
|
168
186
|
bloqade/visual/animation/runtime/ppoly.py,sha256=JB9IP53N1w6adBJEue6J5Nmj818Id9JvrlgrmiQTU1I,1385
|
|
169
187
|
bloqade/visual/animation/runtime/qpustate.py,sha256=rlmxQeJSvaohXrTpXQL5y-NJcpvfW33xPaYM1slv7cc,4270
|
|
170
188
|
bloqade/visual/animation/runtime/utils.py,sha256=ju9IzOWX-vKwfpqUjlUKu3Ssr_UFPFFq-tzH_Nqyo_c,1212
|
|
171
|
-
bloqade_circuit-0.
|
|
172
|
-
bloqade_circuit-0.
|
|
173
|
-
bloqade_circuit-0.
|
|
174
|
-
bloqade_circuit-0.
|
|
189
|
+
bloqade_circuit-0.4.0.dist-info/METADATA,sha256=3CjbxNGvQkBKgscX6HpdRqxkGyiAmDLgkgsAYovRvZc,3683
|
|
190
|
+
bloqade_circuit-0.4.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
191
|
+
bloqade_circuit-0.4.0.dist-info/licenses/LICENSE,sha256=S5GIJwR6QCixPA9wryYb44ZEek0Nz4rt_zLUqP05UbU,13160
|
|
192
|
+
bloqade_circuit-0.4.0.dist-info/RECORD,,
|
bloqade/noise/__init__.py
DELETED
bloqade/noise/native/_dialect.py
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
from typing import Any
|
|
2
|
-
|
|
3
|
-
from kirin.dialects import ilist
|
|
4
|
-
from kirin.lowering import wraps
|
|
5
|
-
|
|
6
|
-
from bloqade.noise import native
|
|
7
|
-
from bloqade.qasm2.types import Qubit
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
@wraps(native.AtomLossChannel)
|
|
11
|
-
def atom_loss_channel(
|
|
12
|
-
qargs: ilist.IList[Qubit, Any] | list, *, prob: float
|
|
13
|
-
) -> None: ...
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
@wraps(native.PauliChannel)
|
|
17
|
-
def pauli_channel(
|
|
18
|
-
qargs: ilist.IList[Qubit, Any] | list, *, px: float, py: float, pz: float
|
|
19
|
-
) -> None: ...
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
@wraps(native.CZPauliChannel)
|
|
23
|
-
def cz_pauli_channel(
|
|
24
|
-
ctrls: ilist.IList[Qubit, Any] | list,
|
|
25
|
-
qarg2: ilist.IList[Qubit, Any] | list,
|
|
26
|
-
*,
|
|
27
|
-
px_ctrl: float,
|
|
28
|
-
py_ctrl: float,
|
|
29
|
-
pz_ctrl: float,
|
|
30
|
-
px_qarg: float,
|
|
31
|
-
py_qarg: float,
|
|
32
|
-
pz_qarg: float,
|
|
33
|
-
paired: bool,
|
|
34
|
-
) -> None: ...
|