We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b422d66 commit 8767fc3Copy full SHA for 8767fc3
src/bloqade/analysis/fidelity/analysis.py
@@ -20,12 +20,13 @@ class FidelityAnalysis(AddressAnalysis):
20
21
```
22
from bloqade import squin
23
+ from bloqade.analysis.fidelity import FidelityAnalysis
24
25
@squin.kernel
26
def main():
27
q = squin.qalloc(1)
28
squin.x(q[0])
- squin.depolarize(q[0])
29
+ squin.depolarize(0.1, q[0])
30
return q
31
32
fid_analysis = FidelityAnalysis(main.dialects)
0 commit comments