Skip to content

Commit 993519c

Browse files
committed
renaming simulator
1 parent 56ccfaa commit 993519c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/bloqade/pyqrack/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
from .qasm2 import uop as uop, core as core, glob as glob, parallel as parallel
1919
from .squin import op as op, qubit as qubit
2020
from .device import (
21+
NoiseSimulator as NoiseSimulator,
2122
StackMemorySimulator as StackMemorySimulator,
2223
DynamicMemorySimulator as DynamicMemorySimulator,
2324
)

src/bloqade/pyqrack/device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def _arg_closure(
197197

198198

199199
@dataclass
200-
class NoiseSimulatorBase(
200+
class NoiseSimulator(
201201
PyQrackSimulatorBase[PyQrackNoiseSimulatorTask], Generic[NoiseModelType]
202202
):
203203
noise_model: NoiseModelType = field(default_factory=native.TwoRowZoneModel)

0 commit comments

Comments
 (0)