Util
insert_qubit_idx_after_apply
insert_qubit_idx_after_apply(
stmt: Apply | Apply | Broadcast | Broadcast,
) -> tuple[ir.SSAValue, ...] | None
Extract qubit indices from Apply or Broadcast statements.
Source code in .venv/lib/python3.12/site-packages/bloqade/stim/rewrite/util.py
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
|
insert_qubit_idx_from_address
insert_qubit_idx_from_address(
address: AddressAttribute,
stmt_to_insert_before: Statement,
) -> tuple[ir.SSAValue, ...] | None
Extract qubit indices from an AddressAttribute and insert them into the SSA form.
Source code in .venv/lib/python3.12/site-packages/bloqade/stim/rewrite/util.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
|
insert_qubit_idx_from_wire_ssa
insert_qubit_idx_from_wire_ssa(
wire_ssas: tuple[SSAValue, ...],
stmt_to_insert_before: Statement,
) -> tuple[ir.SSAValue, ...] | None
Extract qubit indices from wire SSA values and insert them into the SSA form.
Source code in .venv/lib/python3.12/site-packages/bloqade/stim/rewrite/util.py
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
|
is_measure_result_used
is_measure_result_used(
stmt: MeasureQubit | MeasureQubitList | Measure,
) -> bool
Check if the result of a measure statement is used in the program.
Source code in .venv/lib/python3.12/site-packages/bloqade/stim/rewrite/util.py
212 213 214 215 216 217 218 |
|
rewrite_Control
rewrite_Control(
stmt_with_ctrl: Apply | Apply | Broadcast | Broadcast,
) -> RewriteResult
Handle control gates for Apply and Broadcast statements.
Source code in .venv/lib/python3.12/site-packages/bloqade/stim/rewrite/util.py
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
|
rewrite_QubitLoss
rewrite_QubitLoss(
stmt: Apply | Broadcast | Broadcast | Apply,
) -> RewriteResult
Rewrite QubitLoss statements to Stim's TrivialError.
Source code in .venv/lib/python3.12/site-packages/bloqade/stim/rewrite/util.py
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
|