We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 644e2cc + d23d9ce commit 8202c3eCopy full SHA for 8202c3e
src/bloqade/lanes/noise_model.py
@@ -31,6 +31,18 @@
31
def generate_simple_noise_model(
32
noise_model: GeminiNoiseModelABC | None = None,
33
) -> SimpleNoiseModel:
34
+ """Generate a simple noise model from a bloqade-circuit noise model.
35
+
36
+ Args:
37
+ noise_model (GeminiNoiseModelABC | None, optional): The bloqade-circuit noise model to use.
38
+ Defaults to None.
39
40
+ Returns:
41
+ SimpleNoiseModel: A simple noise model compatible with bloqade-lanes. You can
42
+ use this to add noise when rewriting from the move dialect kernel to a squin
43
+ kernel.
44
45
+ """
46
47
if noise_model is None:
48
noise_model = GeminiOneZoneNoiseModel()
0 commit comments