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 7b66ca1 commit ced54caCopy full SHA for ced54ca
src/bloqade/pyqrack/target.py
@@ -1,4 +1,5 @@
1
from typing import List, TypeVar, ParamSpec
2
+from warnings import warn
3
from dataclasses import field, dataclass
4
5
from kirin import ir
@@ -32,6 +33,10 @@ class PyQrack:
32
33
"""Options to pass to the QrackSimulator object, node `qubitCount` will be overwritten."""
34
35
def __post_init__(self):
36
+ warn(
37
+ "The PyQrack target is deprecated and will be removed in a future release. Please use the DynamicMemorySimulaotr / StackMemorySimulator instead."
38
+ )
39
+
40
self.pyqrack_options = PyQrackOptions(
41
{**_default_pyqrack_args(), **self.pyqrack_options}
42
)
0 commit comments