classiq 0.100.0__py3-none-any.whl → 0.102.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- classiq/__init__.py +3 -0
- classiq/_internals/api_wrapper.py +29 -4
- classiq/applications/chemistry/op_utils.py +31 -1
- classiq/applications/chemistry/problems.py +18 -6
- classiq/applications/chemistry/ucc.py +2 -2
- classiq/evaluators/parameter_types.py +1 -4
- classiq/evaluators/qmod_node_evaluators/utils.py +6 -3
- classiq/execution/__init__.py +11 -1
- classiq/execution/jobs.py +122 -5
- classiq/interface/_version.py +1 -1
- classiq/interface/exceptions.py +0 -42
- classiq/interface/executor/execution_request.py +1 -0
- classiq/interface/executor/quantum_code.py +0 -6
- classiq/interface/generator/generation_request.py +9 -4
- classiq/interface/generator/quantum_program.py +8 -36
- classiq/interface/helpers/model_normalizer.py +24 -0
- classiq/interface/helpers/text_utils.py +17 -6
- classiq/interface/model/invert.py +7 -0
- classiq/interface/model/model.py +42 -3
- classiq/interface/model/quantum_function_call.py +17 -5
- classiq/model_expansions/interpreters/base_interpreter.py +3 -2
- classiq/model_expansions/visitors/uncomputation_signature_inference.py +15 -38
- classiq/open_library/functions/__init__.py +42 -27
- classiq/open_library/functions/bit_operations.py +30 -0
- classiq/open_library/functions/modular_arithmetics.py +597 -0
- classiq/open_library/functions/qft_space_arithmetics.py +81 -0
- classiq/open_library/functions/state_preparation.py +6 -3
- classiq/open_library/functions/utility_functions.py +22 -3
- classiq/qmod/builtins/functions/exponentiation.py +2 -2
- classiq/qmod/builtins/operations.py +29 -4
- classiq/qmod/native/pretty_printer.py +15 -4
- classiq/qmod/pretty_print/pretty_printer.py +14 -2
- classiq/qmod/quantum_callable.py +8 -2
- classiq/qmod/quantum_expandable.py +3 -1
- classiq/qmod/quantum_function.py +2 -1
- classiq/qmod/utilities.py +7 -4
- classiq/synthesis_action/__init__.py +20 -0
- classiq/synthesis_action/actions.py +106 -0
- {classiq-0.100.0.dist-info → classiq-0.102.0.dist-info}/METADATA +1 -1
- {classiq-0.100.0.dist-info → classiq-0.102.0.dist-info}/RECORD +42 -40
- classiq/interface/executor/register_initialization.py +0 -36
- classiq/open_library/functions/modular_exponentiation.py +0 -272
- classiq/open_library/functions/qsvt_temp.py +0 -536
- {classiq-0.100.0.dist-info → classiq-0.102.0.dist-info}/WHEEL +0 -0
- {classiq-0.100.0.dist-info → classiq-0.102.0.dist-info}/licenses/LICENSE.txt +0 -0
|
@@ -4,13 +4,13 @@ from typing import Annotated
|
|
|
4
4
|
from classiq.interface.exceptions import ClassiqDeprecationWarning
|
|
5
5
|
|
|
6
6
|
from classiq.open_library.functions.qft_functions import qft
|
|
7
|
-
from classiq.qmod.builtins.functions.standard_gates import PHASE, H
|
|
7
|
+
from classiq.qmod.builtins.functions.standard_gates import PHASE, SWAP, H
|
|
8
8
|
from classiq.qmod.builtins.operations import bind, repeat, within_apply
|
|
9
9
|
from classiq.qmod.cparam import CInt
|
|
10
|
-
from classiq.qmod.qfunc import qfunc
|
|
10
|
+
from classiq.qmod.qfunc import qfunc, qperm
|
|
11
11
|
from classiq.qmod.qmod_variable import QArray, QBit, QCallable, QNum
|
|
12
12
|
from classiq.qmod.quantum_callable import QCallableList
|
|
13
|
-
from classiq.qmod.symbolic import pi
|
|
13
|
+
from classiq.qmod.symbolic import min, pi
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
@qfunc
|
|
@@ -50,6 +50,25 @@ def hadamard_transform(target: QArray[QBit]) -> None:
|
|
|
50
50
|
repeat(target.len, lambda index: H(target[index]))
|
|
51
51
|
|
|
52
52
|
|
|
53
|
+
@qperm
|
|
54
|
+
def multiswap(x: QArray[QBit], y: QArray[QBit]) -> None:
|
|
55
|
+
"""
|
|
56
|
+
[Qmod Classiq-library function]
|
|
57
|
+
|
|
58
|
+
Swaps the qubit states between two arrays.
|
|
59
|
+
Qubits of respective indices are swapped, and additional qubits in the longer array are left unchanged.
|
|
60
|
+
|
|
61
|
+
Args:
|
|
62
|
+
x: The first array
|
|
63
|
+
y: The second array
|
|
64
|
+
|
|
65
|
+
"""
|
|
66
|
+
repeat(
|
|
67
|
+
count=min(x.len, y.len),
|
|
68
|
+
iteration=lambda index: SWAP(x[index], y[index]),
|
|
69
|
+
)
|
|
70
|
+
|
|
71
|
+
|
|
53
72
|
@qfunc
|
|
54
73
|
def switch(selector: CInt, cases: QCallableList) -> None:
|
|
55
74
|
cases[selector]()
|
|
@@ -218,10 +218,10 @@ def sparse_suzuki_trotter(
|
|
|
218
218
|
|
|
219
219
|
@qfunc(external=True)
|
|
220
220
|
def qdrift(
|
|
221
|
-
pauli_operator: SparsePauliOp,
|
|
221
|
+
pauli_operator: SparsePauliOp,
|
|
222
222
|
evolution_coefficient: CReal,
|
|
223
223
|
num_qdrift: CInt,
|
|
224
|
-
qbv: QArray[QBit],
|
|
224
|
+
qbv: QArray[QBit, Literal["pauli_operator.num_qubits"]],
|
|
225
225
|
) -> None:
|
|
226
226
|
"""
|
|
227
227
|
[Qmod core-library function]
|
|
@@ -30,7 +30,7 @@ from classiq.interface.model.classical_parameter_declaration import (
|
|
|
30
30
|
ClassicalParameterDeclaration,
|
|
31
31
|
)
|
|
32
32
|
from classiq.interface.model.control import Control
|
|
33
|
-
from classiq.interface.model.invert import Invert
|
|
33
|
+
from classiq.interface.model.invert import BlockKind, Invert
|
|
34
34
|
from classiq.interface.model.phase_operation import PhaseOperation
|
|
35
35
|
from classiq.interface.model.power import Power
|
|
36
36
|
from classiq.interface.model.quantum_expressions.amplitude_loading_operation import (
|
|
@@ -49,6 +49,7 @@ from classiq.interface.model.repeat import Repeat
|
|
|
49
49
|
from classiq.interface.model.skip_control import SkipControl
|
|
50
50
|
from classiq.interface.model.statement_block import StatementBlock
|
|
51
51
|
from classiq.interface.model.within_apply_operation import WithinApply
|
|
52
|
+
from classiq.interface.source_reference import SourceReference
|
|
52
53
|
|
|
53
54
|
from classiq.qmod.builtins.functions import H, S
|
|
54
55
|
from classiq.qmod.generative import is_generative_mode
|
|
@@ -552,7 +553,7 @@ def power(
|
|
|
552
553
|
|
|
553
554
|
@suppress_return_value
|
|
554
555
|
@qmod_statement
|
|
555
|
-
def invert(stmt_block: QCallable | Callable[[], Statements]) -> None:
|
|
556
|
+
def invert(stmt_block: QCallable | Callable[[], Statements]) -> Callable | None:
|
|
556
557
|
"""
|
|
557
558
|
Apply the inverse of a quantum gate.
|
|
558
559
|
|
|
@@ -574,11 +575,35 @@ def invert(stmt_block: QCallable | Callable[[], Statements]) -> None:
|
|
|
574
575
|
invert(qft(x))
|
|
575
576
|
```
|
|
576
577
|
"""
|
|
577
|
-
_validate_operand(stmt_block)
|
|
578
578
|
assert QCallable.CURRENT_EXPANDABLE is not None
|
|
579
579
|
source_ref = get_source_ref(sys._getframe(2))
|
|
580
|
+
|
|
581
|
+
if (
|
|
582
|
+
isinstance(stmt_block, QCallable)
|
|
583
|
+
and len(stmt_block.func_decl.positional_arg_declarations) > 0
|
|
584
|
+
):
|
|
585
|
+
return lambda *args, **kwargs: _invert(
|
|
586
|
+
lambda: stmt_block( # type:ignore[call-arg]
|
|
587
|
+
*args, **kwargs, _source_ref=source_ref
|
|
588
|
+
),
|
|
589
|
+
source_ref,
|
|
590
|
+
BlockKind.SingleCall,
|
|
591
|
+
)
|
|
592
|
+
_invert(stmt_block, source_ref, BlockKind.Compound)
|
|
593
|
+
return None
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
def _invert(
|
|
597
|
+
stmt_block: Callable[[], Statements],
|
|
598
|
+
source_ref: SourceReference,
|
|
599
|
+
block_kind: BlockKind,
|
|
600
|
+
) -> None:
|
|
601
|
+
assert QCallable.CURRENT_EXPANDABLE is not None
|
|
602
|
+
_validate_operand(stmt_block)
|
|
580
603
|
invert_stmt = Invert(
|
|
581
|
-
body=_operand_to_body(stmt_block, "stmt_block"),
|
|
604
|
+
body=_operand_to_body(stmt_block, "stmt_block"),
|
|
605
|
+
block_kind=block_kind,
|
|
606
|
+
source_ref=source_ref,
|
|
582
607
|
)
|
|
583
608
|
if is_generative_mode():
|
|
584
609
|
invert_stmt.set_generative_block("body", stmt_block)
|
|
@@ -42,7 +42,7 @@ from classiq.interface.model.handle_binding import (
|
|
|
42
42
|
SubscriptHandleBinding,
|
|
43
43
|
)
|
|
44
44
|
from classiq.interface.model.inplace_binary_operation import InplaceBinaryOperation
|
|
45
|
-
from classiq.interface.model.invert import Invert
|
|
45
|
+
from classiq.interface.model.invert import BlockKind, Invert
|
|
46
46
|
from classiq.interface.model.model import Model
|
|
47
47
|
from classiq.interface.model.model_visitor import ModelVisitor
|
|
48
48
|
from classiq.interface.model.native_function_definition import NativeFunctionDefinition
|
|
@@ -367,9 +367,20 @@ class DSLPrettyPrinter(ModelVisitor):
|
|
|
367
367
|
return power_code
|
|
368
368
|
|
|
369
369
|
def visit_Invert(self, invert: Invert) -> str:
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
370
|
+
match invert.block_kind:
|
|
371
|
+
case BlockKind.SingleCall:
|
|
372
|
+
if len(invert.body) != 1 or not isinstance(
|
|
373
|
+
invert.body[0], QuantumFunctionCall
|
|
374
|
+
):
|
|
375
|
+
raise ClassiqInternalError("Malformed single-call invert")
|
|
376
|
+
invert_code = f"{self._indent}invert "
|
|
377
|
+
invert_code += self.visit(invert.body[0]).lstrip()
|
|
378
|
+
case BlockKind.Compound:
|
|
379
|
+
invert_code = f"{self._indent}invert {{\n"
|
|
380
|
+
invert_code += self._visit_body(invert.body)
|
|
381
|
+
invert_code += f"{self._indent}}}\n"
|
|
382
|
+
case _:
|
|
383
|
+
raise ClassiqInternalError("Unknown block type")
|
|
373
384
|
return invert_code
|
|
374
385
|
|
|
375
386
|
def visit_Block(self, block: Block) -> str:
|
|
@@ -45,7 +45,7 @@ from classiq.interface.model.handle_binding import (
|
|
|
45
45
|
SubscriptHandleBinding,
|
|
46
46
|
)
|
|
47
47
|
from classiq.interface.model.inplace_binary_operation import InplaceBinaryOperation
|
|
48
|
-
from classiq.interface.model.invert import Invert
|
|
48
|
+
from classiq.interface.model.invert import BlockKind, Invert
|
|
49
49
|
from classiq.interface.model.model import Model
|
|
50
50
|
from classiq.interface.model.model_visitor import ModelVisitor
|
|
51
51
|
from classiq.interface.model.native_function_definition import NativeFunctionDefinition
|
|
@@ -509,7 +509,19 @@ class PythonPrettyPrinter(ModelVisitor):
|
|
|
509
509
|
|
|
510
510
|
def visit_Invert(self, invert: Invert) -> str:
|
|
511
511
|
self._imports["invert"] = 1
|
|
512
|
-
|
|
512
|
+
match invert.block_kind:
|
|
513
|
+
case BlockKind.SingleCall:
|
|
514
|
+
if len(invert.body) != 1 or not isinstance(
|
|
515
|
+
invert.body[0], QuantumFunctionCall
|
|
516
|
+
):
|
|
517
|
+
raise ClassiqInternalError("Malformed single-call invert")
|
|
518
|
+
call_str = self.visit(invert.body[0])
|
|
519
|
+
call_str = call_str.replace("(", ")(", 1)
|
|
520
|
+
return f"{self._indent}invert({call_str}\n"
|
|
521
|
+
case BlockKind.Compound:
|
|
522
|
+
return f"{self._indent}invert({self._visit_body(invert.body)})\n"
|
|
523
|
+
case _:
|
|
524
|
+
raise ClassiqInternalError("Unknown block type")
|
|
513
525
|
|
|
514
526
|
def visit_Block(self, block: Block) -> str:
|
|
515
527
|
self._imports["block"] = 1
|
classiq/qmod/quantum_callable.py
CHANGED
|
@@ -46,9 +46,15 @@ class QCallable(Generic[P], ABC):
|
|
|
46
46
|
FRAME_DEPTH = 1
|
|
47
47
|
|
|
48
48
|
@suppress_return_value
|
|
49
|
-
def __call__(
|
|
49
|
+
def __call__(
|
|
50
|
+
self, *args: Any, _source_ref: SourceReference | None = None, **kwargs: Any
|
|
51
|
+
) -> None:
|
|
50
52
|
assert QCallable.CURRENT_EXPANDABLE is not None
|
|
51
|
-
source_ref =
|
|
53
|
+
source_ref = (
|
|
54
|
+
get_source_ref(sys._getframe(self.FRAME_DEPTH))
|
|
55
|
+
if _source_ref is None
|
|
56
|
+
else _source_ref
|
|
57
|
+
)
|
|
52
58
|
QCallable.CURRENT_EXPANDABLE.append_statement_to_body(
|
|
53
59
|
self.create_quantum_function_call(source_ref, *args, **kwargs)
|
|
54
60
|
)
|
|
@@ -388,7 +388,9 @@ def prepare_arg(
|
|
|
388
388
|
qlambda.set_py_callable(val._py_callable)
|
|
389
389
|
return qlambda
|
|
390
390
|
|
|
391
|
-
if isinstance(val, QExpandable)
|
|
391
|
+
if isinstance(val, QExpandable) and (
|
|
392
|
+
get_global_declarative_switch() or not is_generative_mode()
|
|
393
|
+
):
|
|
392
394
|
val.expand()
|
|
393
395
|
elif isinstance(val, QTerminalCallable):
|
|
394
396
|
return val.get_arg()
|
classiq/qmod/quantum_function.py
CHANGED
|
@@ -162,7 +162,8 @@ class QFunc(BaseQFunc):
|
|
|
162
162
|
not get_global_declarative_switch()
|
|
163
163
|
and len(self._qmodule.generative_functions) > 0
|
|
164
164
|
):
|
|
165
|
-
|
|
165
|
+
model = self._create_generative_model(model)
|
|
166
|
+
model.compress_debug_info()
|
|
166
167
|
return model
|
|
167
168
|
|
|
168
169
|
def _create_generative_model(self, model_stub: Model) -> Model:
|
classiq/qmod/utilities.py
CHANGED
|
@@ -11,6 +11,7 @@ from typing import (
|
|
|
11
11
|
Any,
|
|
12
12
|
ForwardRef,
|
|
13
13
|
Literal,
|
|
14
|
+
TypeVar,
|
|
14
15
|
Union,
|
|
15
16
|
get_args,
|
|
16
17
|
get_origin,
|
|
@@ -156,18 +157,20 @@ def varname(depth: int) -> str | None:
|
|
|
156
157
|
return var_name
|
|
157
158
|
|
|
158
159
|
|
|
160
|
+
ReturnType = TypeVar("ReturnType")
|
|
159
161
|
Params = ParamSpec("Params")
|
|
160
162
|
|
|
161
163
|
|
|
162
|
-
def suppress_return_value(
|
|
164
|
+
def suppress_return_value(
|
|
165
|
+
func: Callable[Params, ReturnType],
|
|
166
|
+
) -> Callable[Params, ReturnType]:
|
|
163
167
|
# An empty decorator suppresses mypy's func-returns-value error when assigning the
|
|
164
168
|
# return value of a None-returning function
|
|
165
169
|
return func
|
|
166
170
|
|
|
167
171
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
]
|
|
172
|
+
Statement = Union[None, Callable, "QVar", "CParam"]
|
|
173
|
+
Statements = Union[Statement, list[Statement], tuple[Statement, ...]]
|
|
171
174
|
|
|
172
175
|
|
|
173
176
|
def _eval_qnum(val: int, size: int, is_signed: bool, fraction_digits: int) -> float:
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from classiq.interface.generator.generation_request import (
|
|
2
|
+
SynthesisActionDetails,
|
|
3
|
+
)
|
|
4
|
+
|
|
5
|
+
from .actions import (
|
|
6
|
+
SynthesisActionFilters,
|
|
7
|
+
get_synthesis_actions,
|
|
8
|
+
get_synthesis_actions_async,
|
|
9
|
+
)
|
|
10
|
+
|
|
11
|
+
__all__ = [
|
|
12
|
+
"SynthesisActionDetails",
|
|
13
|
+
"SynthesisActionFilters",
|
|
14
|
+
"get_synthesis_actions",
|
|
15
|
+
"get_synthesis_actions_async",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def __dir__() -> list[str]:
|
|
20
|
+
return __all__
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
from dataclasses import asdict, dataclass
|
|
2
|
+
from datetime import datetime
|
|
3
|
+
from typing import TYPE_CHECKING, Any
|
|
4
|
+
|
|
5
|
+
from classiq.interface.jobs import JobStatus
|
|
6
|
+
|
|
7
|
+
from classiq._internals.api_wrapper import ApiWrapper
|
|
8
|
+
from classiq._internals.async_utils import syncify_function
|
|
9
|
+
|
|
10
|
+
if TYPE_CHECKING:
|
|
11
|
+
import pandas as pd
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
@dataclass
|
|
15
|
+
class SynthesisActionFilters:
|
|
16
|
+
"""
|
|
17
|
+
Filter parameters for querying synthesis actions.
|
|
18
|
+
|
|
19
|
+
All filters are combined using AND logic: only actions matching all specified filters are returned.
|
|
20
|
+
Range filters (with _min/_max suffixes) are inclusive.
|
|
21
|
+
Datetime filters are compared against the job's timestamps.
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
status: JobStatus | None = None
|
|
25
|
+
target_backend: str | None = None
|
|
26
|
+
optimization_level: str | None = None
|
|
27
|
+
program_id: str | None = None
|
|
28
|
+
backend_name: str | None = None
|
|
29
|
+
optimization_parameter: str | None = None
|
|
30
|
+
random_seed: int | None = None
|
|
31
|
+
max_width: int | None = None
|
|
32
|
+
max_gate_count: int | None = None
|
|
33
|
+
total_cost_min: float | None = None
|
|
34
|
+
total_cost_max: float | None = None
|
|
35
|
+
start_time_min: datetime | None = None
|
|
36
|
+
start_time_max: datetime | None = None
|
|
37
|
+
end_time_min: datetime | None = None
|
|
38
|
+
end_time_max: datetime | None = None
|
|
39
|
+
|
|
40
|
+
def format_filters(self) -> dict[str, Any]:
|
|
41
|
+
"""Convert filter fields to API kwargs, excluding None values and converting datetimes."""
|
|
42
|
+
filter_dict = asdict(self)
|
|
43
|
+
return {
|
|
44
|
+
k: (v.isoformat() if isinstance(v, datetime) else v)
|
|
45
|
+
for k, v in filter_dict.items()
|
|
46
|
+
if v is not None
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
async def get_synthesis_actions_async(
|
|
51
|
+
offset: int = 0,
|
|
52
|
+
limit: int = 50,
|
|
53
|
+
filters: SynthesisActionFilters | None = None,
|
|
54
|
+
) -> "pd.DataFrame":
|
|
55
|
+
"""Query synthesis actions with optional filters.
|
|
56
|
+
Args:
|
|
57
|
+
offset: Number of results to skip (default: 0)
|
|
58
|
+
limit: Maximum number of results to return (default: 50)
|
|
59
|
+
filters: Optional SynthesisActionFilters object containing filter parameters.
|
|
60
|
+
|
|
61
|
+
Returns:
|
|
62
|
+
A pandas DataFrame containing synthesis actions matching the filters.
|
|
63
|
+
Each row represents a synthesis action with columns for all fields
|
|
64
|
+
from SynthesisActionDetails (id, name, start_time, end_time, status, etc.).
|
|
65
|
+
"""
|
|
66
|
+
import pandas as pd
|
|
67
|
+
|
|
68
|
+
api_kwargs = filters.format_filters() if filters is not None else {}
|
|
69
|
+
|
|
70
|
+
result = await ApiWrapper().call_query_synthesis_actions(
|
|
71
|
+
offset, limit, http_client=None, **api_kwargs
|
|
72
|
+
)
|
|
73
|
+
|
|
74
|
+
if not result.results:
|
|
75
|
+
return pd.DataFrame()
|
|
76
|
+
|
|
77
|
+
return pd.DataFrame(action.model_dump() for action in result.results)
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
def get_synthesis_actions(
|
|
81
|
+
offset: int = 0,
|
|
82
|
+
limit: int = 50,
|
|
83
|
+
filters: SynthesisActionFilters | None = None,
|
|
84
|
+
) -> "pd.DataFrame":
|
|
85
|
+
"""Query synthesis actions with optional filters.
|
|
86
|
+
|
|
87
|
+
Args:
|
|
88
|
+
offset: Number of results to skip (default: 0)
|
|
89
|
+
limit: Maximum number of results to return (default: 50)
|
|
90
|
+
filters: Optional SynthesisActionFilters object containing filter parameters.
|
|
91
|
+
|
|
92
|
+
Returns:
|
|
93
|
+
A pandas DataFrame containing synthesis actions matching the filters.
|
|
94
|
+
Each row represents a synthesis action with columns for all fields
|
|
95
|
+
from SynthesisActionDetails (id, name, start_time, end_time, status, etc.).
|
|
96
|
+
|
|
97
|
+
Examples:
|
|
98
|
+
# Query all actions:
|
|
99
|
+
df = get_synthesis_actions(limit=10)
|
|
100
|
+
|
|
101
|
+
# Query with filters:
|
|
102
|
+
filters = SynthesisActionFilters(status="COMPLETED", target_backend="ibm")
|
|
103
|
+
df = get_synthesis_actions(filters=filters, limit=10)
|
|
104
|
+
"""
|
|
105
|
+
|
|
106
|
+
return syncify_function(get_synthesis_actions_async)(offset, limit, filters)
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
classiq/__init__.py,sha256=
|
|
1
|
+
classiq/__init__.py,sha256=kgpMwKZ5ONi2BOmn_FHfP5vUKBRMqXOq6XMq4f3zQiw,3967
|
|
2
2
|
classiq/_analyzer_extras/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
classiq/_analyzer_extras/_ipywidgets_async_extension.py,sha256=cxdrzSOEQ8_2rLXcScDnhZoZAHqPmIhY-DhBPWLcNII,2200
|
|
4
4
|
classiq/_analyzer_extras/interactive_hardware.py,sha256=9ZnQX_MZCF21s2skWXUjm4mYCBCeytJtxcnyTE1XU4g,3438
|
|
5
5
|
classiq/_internals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
classiq/_internals/api_wrapper.py,sha256=
|
|
6
|
+
classiq/_internals/api_wrapper.py,sha256=DW_RO_n_IVWL0l9vD__vIeSh56_3z96-uR44UFzAla8,17769
|
|
7
7
|
classiq/_internals/async_utils.py,sha256=mcBzGZQYG3EdI7NkBwAO_MGsbF4RFMEUjN1Yoz1CiKE,3327
|
|
8
8
|
classiq/_internals/authentication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
classiq/_internals/authentication/auth0.py,sha256=HyjyyTUDk9f9sZWsXc9oD6dR0oHMk4btTtmBqeBIUk8,4452
|
|
@@ -31,9 +31,9 @@ classiq/applications/__init__.py,sha256=eFH-2tf-OWrtPy3JWtnuBbeEtc1lpQhfkMtUDaFI
|
|
|
31
31
|
classiq/applications/chemistry/__init__.py,sha256=OoNd0yizXq09isp6Py6QbGaQYKpgVsZkLbP2ong2GxE,186
|
|
32
32
|
classiq/applications/chemistry/hartree_fock.py,sha256=PURM4CLI9lcYvpiawwYFgyGrTqECuGr1z1buOaIV5YU,2601
|
|
33
33
|
classiq/applications/chemistry/mapping.py,sha256=iDS0THG0P3AfF54wtD5ioGhrCV7BZ5eTYyMiMbcpAbU,2547
|
|
34
|
-
classiq/applications/chemistry/op_utils.py,sha256=
|
|
35
|
-
classiq/applications/chemistry/problems.py,sha256=
|
|
36
|
-
classiq/applications/chemistry/ucc.py,sha256=
|
|
34
|
+
classiq/applications/chemistry/op_utils.py,sha256=BJo0ibJzgjdaI-TgNhvl_QAByJ_G8plWknetW7unYnI,3435
|
|
35
|
+
classiq/applications/chemistry/problems.py,sha256=1cpRGhevbdi7otWzdXGVrdv4rnRrrDd8mRmLy9wxQmU,7766
|
|
36
|
+
classiq/applications/chemistry/ucc.py,sha256=1sils_Z4aLOaEb0F2wQVuCBhEcHsKqvKAog4jRuBVt8,3651
|
|
37
37
|
classiq/applications/chemistry/z2_symmetries.py,sha256=svPE2t9R25p91QK1_C3JQATt_gqGsBJ4TsP4vN0mvdI,13116
|
|
38
38
|
classiq/applications/combinatorial_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
39
|
classiq/applications/combinatorial_helpers/allowed_constraints.py,sha256=HAxbBsAIkT9dGVVdCekdNmz2CEEpJdJNOnMZ31loAiA,686
|
|
@@ -92,7 +92,7 @@ classiq/evaluators/argument_types.py,sha256=ecSLiaXuI9iEGIePNSM-MrTxulOb5pMPfcoK
|
|
|
92
92
|
classiq/evaluators/classical_expression.py,sha256=rYVRW-ZZfcbDnm1cNziC21EqBzbsAfZMoVSq2cx4mpA,2472
|
|
93
93
|
classiq/evaluators/control.py,sha256=aJvAFwWEV__hbjD97z4dcjCYf8O0Pcbg6WNjP5ymqHM,3472
|
|
94
94
|
classiq/evaluators/expression_evaluator.py,sha256=eMuGRocdNj3uQbcMGWBamVyFQKlh1H3MXnNzzENSYNY,1668
|
|
95
|
-
classiq/evaluators/parameter_types.py,sha256=
|
|
95
|
+
classiq/evaluators/parameter_types.py,sha256=0d4tYOjlnu67rldqulZyVsFFxN3_VVxJnUb5HEEwGqY,16597
|
|
96
96
|
classiq/evaluators/qmod_annotated_expression.py,sha256=6i83hD32FMtbzS48Ps8w9CLII_v2XoZokmuRNlDjqp4,11293
|
|
97
97
|
classiq/evaluators/qmod_expression_visitors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
98
|
classiq/evaluators/qmod_expression_visitors/out_of_place_node_transformer.py,sha256=V77ZsxPvr52zSpUF3XuuP9_7khZRMIxon02I9gaayUo,682
|
|
@@ -116,21 +116,21 @@ classiq/evaluators/qmod_node_evaluators/piecewise_evaluation.py,sha256=s7rL1lSbz
|
|
|
116
116
|
classiq/evaluators/qmod_node_evaluators/struct_instantiation_evaluation.py,sha256=wfVXs7zF-9OP6Cmw5Mhyqbeg1Rmtaf_VOxZ_86CzHSQ,2462
|
|
117
117
|
classiq/evaluators/qmod_node_evaluators/subscript_evaluation.py,sha256=NZOZAwbcS251FMd42fAtJLdEfmbxT8X6d_I0XHKItMw,9278
|
|
118
118
|
classiq/evaluators/qmod_node_evaluators/unary_op_evaluation.py,sha256=xywBIh2VZDNGHewTSDnRpDvTdC4gAc3R77zJWKTwRLo,3396
|
|
119
|
-
classiq/evaluators/qmod_node_evaluators/utils.py,sha256=
|
|
119
|
+
classiq/evaluators/qmod_node_evaluators/utils.py,sha256=RPBV6Gwy7ZviHfHKO60eWmc_MOfzoqDJXch55vGIGTQ,4261
|
|
120
120
|
classiq/evaluators/qmod_type_inference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
121
|
classiq/evaluators/qmod_type_inference/classical_type_inference.py,sha256=rPxvqRAPz06WsE5FUczO0WIB4dGv2S8BJH2kqpYhZEY,6767
|
|
122
122
|
classiq/evaluators/qmod_type_inference/quantum_type_inference.py,sha256=3gMh44K7BiTY8W78AcytUPR-1n2xjiUyQ58JcgzKwdM,12609
|
|
123
123
|
classiq/evaluators/quantum_type_utils.py,sha256=oTouwtHBM_xugCaa4kqd6L7YujRDMRxxqirtnzhzrJk,2792
|
|
124
124
|
classiq/evaluators/type_type_match.py,sha256=XOI6oJiHkLdcx-RX9yyE2ARXFLbaWYW1Tq2YSlVAOJc,3269
|
|
125
|
-
classiq/execution/__init__.py,sha256=
|
|
125
|
+
classiq/execution/__init__.py,sha256=bsDTMOgazX9QWCKvpTzFH2DGqHqGiSKUkOd9Yun9EJk,1596
|
|
126
126
|
classiq/execution/all_hardware_devices.py,sha256=KpLefEISE03FDdgFPGggXeG7NAxBW4090gN4272Dl-E,368
|
|
127
127
|
classiq/execution/execution_session.py,sha256=gzqJSdRWq-uTJ4EsSo17RNz1L1ytwgP-tLYHcAA3E_4,26088
|
|
128
|
-
classiq/execution/jobs.py,sha256=
|
|
128
|
+
classiq/execution/jobs.py,sha256=YvBQ0IxXPBesaFcPuZOj8BmHzKVt8PhocA3Cf0IDSd0,16139
|
|
129
129
|
classiq/execution/qnn.py,sha256=zA-I-wvVkjyoigGvcG2W2KVbyKF5Z4X6hIQ3IPI-1xA,2436
|
|
130
130
|
classiq/execution/user_budgets.py,sha256=zModhoxmfusRm_AEYD80NAzEE9oemmkkwpE9vMP3ydI,3527
|
|
131
131
|
classiq/executor.py,sha256=5j4bLYP4acxKTenFYnSEGf9tBDCjdpBiaBp86l78U_o,2278
|
|
132
132
|
classiq/interface/__init__.py,sha256=cg7hD_XVu1_jJ1fgwmT0rMIoZHopNVeB8xtlmMx-E_A,83
|
|
133
|
-
classiq/interface/_version.py,sha256=
|
|
133
|
+
classiq/interface/_version.py,sha256=4QiOQPfPc7oPf3yR7qveNGq2vjkRouIkrHCHFL6gGf0,198
|
|
134
134
|
classiq/interface/analyzer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
135
135
|
classiq/interface/analyzer/analysis_params.py,sha256=34pFb5X5rPeZOe3TNxBq6oT5YJKcJ9ORyZ_7KRP-alA,2991
|
|
136
136
|
classiq/interface/analyzer/cytoscape_graph.py,sha256=Ky2tSKdnCnA26896DPy64HSVudLnE3FzdGDUUf0nkI0,2345
|
|
@@ -185,7 +185,7 @@ classiq/interface/debug_info/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
185
185
|
classiq/interface/debug_info/back_ref_util.py,sha256=plWBiBMfFIY6aYAR3NVYComsY394ysLVdk_yFy1qcC4,791
|
|
186
186
|
classiq/interface/debug_info/debug_info.py,sha256=dYcKD8S7ps4rWNBb5s8cE-pGSekdXXczLy2m2lFPBBk,4448
|
|
187
187
|
classiq/interface/enum_utils.py,sha256=QxkxLGgON8vdSzLZzHFlPEBJoGOqoIwpESEfLfRqN0w,312
|
|
188
|
-
classiq/interface/exceptions.py,sha256=
|
|
188
|
+
classiq/interface/exceptions.py,sha256=CxNLU5EPhOcIScSylbt4p8LNoNNCTEO4E96kZ1zDS_w,3791
|
|
189
189
|
classiq/interface/execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
190
190
|
classiq/interface/execution/primitives.py,sha256=Zqu5j2s8E7a0B6LyIRX4eEgq3hHqAjA5ptWg0gVLy5Q,1476
|
|
191
191
|
classiq/interface/executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -193,13 +193,12 @@ classiq/interface/executor/constants.py,sha256=DtSx-1HArWE0hHjOZHY9WJBevt3hP7M8S
|
|
|
193
193
|
classiq/interface/executor/estimate_cost.py,sha256=gkvnEd77iGwdaon6fIbZqY_G1PHi9wDO5Xrbr_hxYpg,1176
|
|
194
194
|
classiq/interface/executor/estimation.py,sha256=lJEmN3Uj9bW0EY7JEZvzItwEybbBHSn7zYFz89L8fqo,389
|
|
195
195
|
classiq/interface/executor/execution_preferences.py,sha256=vrufYu9r4F-nBTS4NGkTAOteSmoFrjTTpSCafg0x8wo,2871
|
|
196
|
-
classiq/interface/executor/execution_request.py,sha256=
|
|
196
|
+
classiq/interface/executor/execution_request.py,sha256=dJIOIf2yHgsdVWw-JS8f2nnmRMSN7dtpI1ZAw1YtsN8,2453
|
|
197
197
|
classiq/interface/executor/execution_result.py,sha256=Xxe3Q4HuWCneOTQy3MYl0R3BuQLGCVOfRooDjHx_mWg,3167
|
|
198
198
|
classiq/interface/executor/optimizer_preferences.py,sha256=-AJjvpPoXGCWt_rrfsEtWy_BUKX0ZjR679J8_VPyv4Q,302
|
|
199
|
-
classiq/interface/executor/quantum_code.py,sha256=
|
|
199
|
+
classiq/interface/executor/quantum_code.py,sha256=yMVTKq6unJYZyfKyiMYJHOwdtBwSksfD6Nf5DGWWirM,3917
|
|
200
200
|
classiq/interface/executor/quantum_instruction_set.py,sha256=z6i6jWsXjatmyrTJW6t9XjQrO6scRgmfV1Oi2xEEu1A,592
|
|
201
201
|
classiq/interface/executor/quantum_program_params.py,sha256=yoxZRCa-O_sbzchUXPcIjQ_doT6db_8o9mf040NDWkM,503
|
|
202
|
-
classiq/interface/executor/register_initialization.py,sha256=-dkivVSDkkLGkIdu0L5VaONhPCRp_JE42LiAZuHUK7k,1365
|
|
203
202
|
classiq/interface/executor/result.py,sha256=oyenkuVT2sqLhoYBfcJIsCHzt980ip1wRvps6mX62AU,16954
|
|
204
203
|
classiq/interface/executor/user_budget.py,sha256=fcaaB91HdURQrfROlSOaQcDnKUR7gl26TRN_n7PQCMI,1572
|
|
205
204
|
classiq/interface/executor/vqe_result.py,sha256=SaYSgj8JtyDR4b8Ew6zs6fKTfTJKgQd6pIoDv7unHB4,2281
|
|
@@ -275,7 +274,7 @@ classiq/interface/generator/functions/qmod_python_interface.py,sha256=w1Oz3bV6KS
|
|
|
275
274
|
classiq/interface/generator/functions/type_modifier.py,sha256=tcAS3rfgBhNyWW-IDj5v4wA00fOMfDektRD4IBmnvqQ,150
|
|
276
275
|
classiq/interface/generator/functions/type_name.py,sha256=OyFT64_ktSVteTgUFUUjX2lY6923yWJkkssLIOiZKo0,7146
|
|
277
276
|
classiq/interface/generator/generated_circuit_data.py,sha256=eHFqjw510qSj0sYsCokeastwjHMGNcaQld91pBZm2is,12675
|
|
278
|
-
classiq/interface/generator/generation_request.py,sha256=
|
|
277
|
+
classiq/interface/generator/generation_request.py,sha256=SEwaslefOWls3XfLDUl7v-81lulKqUbFbRd4fijll5I,1101
|
|
279
278
|
classiq/interface/generator/hadamard_transform.py,sha256=NI4oZBpDCGfaw2OTb5SL3iSGI_nDtyUgElTCO4pEKnk,673
|
|
280
279
|
classiq/interface/generator/hamiltonian_evolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
281
280
|
classiq/interface/generator/hamiltonian_evolution/exponentiation.py,sha256=sBRQAtP5MD3aaF9FmKKXtrF2g8DXn_OI_G_BWLv0jX8,1675
|
|
@@ -302,7 +301,7 @@ classiq/interface/generator/preferences/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
|
|
|
302
301
|
classiq/interface/generator/preferences/optimization.py,sha256=7iEWWNFSxqi4XMb4JmOcfeN8KqvNMEcSjQw8P8yrdOA,1066
|
|
303
302
|
classiq/interface/generator/preferences/qasm_to_qmod_params.py,sha256=K1MFAUK_uhRfedjfm_bV-ApZsqmJWzeRD37-hd3yaTg,417
|
|
304
303
|
classiq/interface/generator/quantum_function_call.py,sha256=_EBr9TR12XwVTd0FVWrbjZrAK963xu6yCcwgNBKQJTg,24127
|
|
305
|
-
classiq/interface/generator/quantum_program.py,sha256=
|
|
304
|
+
classiq/interface/generator/quantum_program.py,sha256=wBUWpmxiYOGhpSbpkiJy6jxIDliSOCqoISfzJMaYzxs,5657
|
|
306
305
|
classiq/interface/generator/randomized_benchmarking.py,sha256=D6KI_1fMF5oBydaal2WLmTSit6xSMtz0yDAIZMMO89Q,635
|
|
307
306
|
classiq/interface/generator/range_types.py,sha256=bmm2NjRxaCoVJT5WMLjPDCrjGCbjzgjodlCDUNiGA68,2028
|
|
308
307
|
classiq/interface/generator/register_role.py,sha256=moerPIO9gQUuG5pe43TemmScSVjTK7_gi-qbrhIgLOA,1147
|
|
@@ -340,9 +339,9 @@ classiq/interface/helpers/custom_pydantic_types.py,sha256=fr2V13aCNeLFNaNBFiuYrF
|
|
|
340
339
|
classiq/interface/helpers/datastructures.py,sha256=0pMgENe8Ev6e6Kip2644s79OceMzccIb4DcLVXJ4t_0,864
|
|
341
340
|
classiq/interface/helpers/hashable_mixin.py,sha256=BmMts3hvzNgTWnbYmjVeDYyNL9uMqID4jW_FLQapNVM,1099
|
|
342
341
|
classiq/interface/helpers/hashable_pydantic_base_model.py,sha256=ADkPtodtdNEsLkZl65Vw-H8N6e0pJaLccV3G1l-QPcs,638
|
|
343
|
-
classiq/interface/helpers/model_normalizer.py,sha256=
|
|
342
|
+
classiq/interface/helpers/model_normalizer.py,sha256=AN7ad-TRsqZA7xLip_zJvvizNcdr5o4Rdjxa-OiTjvk,2747
|
|
344
343
|
classiq/interface/helpers/pydantic_model_helpers.py,sha256=i4AccZnH4EuxaRF6dbMdNrZ2kwxbbHsjzxP-fGDtyE0,548
|
|
345
|
-
classiq/interface/helpers/text_utils.py,sha256=
|
|
344
|
+
classiq/interface/helpers/text_utils.py,sha256=39O0qb8rLMomt6QC7ZoYv6rsl6GdlzWB6UNCryuIU9I,836
|
|
346
345
|
classiq/interface/helpers/validation_helpers.py,sha256=Jt0xs5EZeEQZOBEZPRmKctHmAiEfp6cWhLcSycsU_8w,594
|
|
347
346
|
classiq/interface/helpers/versioned_model.py,sha256=XFjk7GPEUKeUeXc4fK0azhUUvze8bNheTDDIE-JZTdw,579
|
|
348
347
|
classiq/interface/ide/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -360,8 +359,8 @@ classiq/interface/model/classical_parameter_declaration.py,sha256=Xy545UrJPBL7o-
|
|
|
360
359
|
classiq/interface/model/control.py,sha256=AFduNnIKGAPLE0YfJgmUtW7OFvBs5SApbE0mARN_e9A,1749
|
|
361
360
|
classiq/interface/model/handle_binding.py,sha256=yr9cTVPEcrtY1wqeAYp1cpEXIUjR3kpzDYqWBUl6iZ0,12754
|
|
362
361
|
classiq/interface/model/inplace_binary_operation.py,sha256=lccxr1-XMCXJh0BfoQxSLr5xhVkJxeaVCzZ5Mh3jYiI,1617
|
|
363
|
-
classiq/interface/model/invert.py,sha256=
|
|
364
|
-
classiq/interface/model/model.py,sha256=
|
|
362
|
+
classiq/interface/model/invert.py,sha256=tmWrCZ4IRgSurfmUUW-F91O3c3iILq9EwtYMQ1Z-TSM,742
|
|
363
|
+
classiq/interface/model/model.py,sha256=PCBiyz5OZPX2NvVak-AIgCf9L5oYZElDB8WMMcrGmNI,8763
|
|
365
364
|
classiq/interface/model/model_visitor.py,sha256=VGkfGrRNE3ZL8OoKnTi9fDKvo2d3QD4bpkRs1BjbDmA,2031
|
|
366
365
|
classiq/interface/model/native_function_definition.py,sha256=_oGboBMAxVTPjkIHT9cKUo8lDNwsnwV62YQaTwKvjug,658
|
|
367
366
|
classiq/interface/model/parameter.py,sha256=Md90hWndjTzBxQ8SX64mA3jWe1RrEXkt5h3ZXAMFooE,301
|
|
@@ -372,7 +371,7 @@ classiq/interface/model/quantum_expressions/__init__.py,sha256=47DEQpj8HBSa-_TIm
|
|
|
372
371
|
classiq/interface/model/quantum_expressions/amplitude_loading_operation.py,sha256=9vo9duieNmLwGoUn6Ey4C0YSqYymbt3Tb6eo80qATIs,2449
|
|
373
372
|
classiq/interface/model/quantum_expressions/arithmetic_operation.py,sha256=OzXJRrkSGggj2M4fH-EmP2x_fPqp07-WcVinC-o9YAM,3231
|
|
374
373
|
classiq/interface/model/quantum_expressions/quantum_expression.py,sha256=QQVcKLNX4v6TIzq9MY4nNw4pqCBVcYdo98lmGdUcOp4,2197
|
|
375
|
-
classiq/interface/model/quantum_function_call.py,sha256=
|
|
374
|
+
classiq/interface/model/quantum_function_call.py,sha256=bTUJ12-m7DnQEv0fyPKecgpe08fEGrc56TYcaR7aXak,8821
|
|
376
375
|
classiq/interface/model/quantum_function_declaration.py,sha256=YZ25h_vVKC4_KbwvehvVKen1SXQsHxtPOJcW_a843Dg,9133
|
|
377
376
|
classiq/interface/model/quantum_lambda_function.py,sha256=Z060v2Jis7o9rosEv_Fqpl9nh2EsAXZt8GFn_r4otb8,2462
|
|
378
377
|
classiq/interface/model/quantum_statement.py,sha256=K7ovMshFaH-SmQp6ZV0DQsLgN6HnnksbD91uj5PQD1M,4005
|
|
@@ -405,7 +404,7 @@ classiq/model_expansions/debug_flag.py,sha256=JWzl9FFq2CLcvTg_sh-K8Dp_xXvewsTuFK
|
|
|
405
404
|
classiq/model_expansions/function_builder.py,sha256=DNj7NUtM3vYL-eCYWTGWhqgH89hbms6WkQTaZDze5UI,9090
|
|
406
405
|
classiq/model_expansions/generative_functions.py,sha256=JUqDl6aSphEM5LdOjxuf0LLVcxOcfB4GycP65zbq6NI,8194
|
|
407
406
|
classiq/model_expansions/interpreters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
408
|
-
classiq/model_expansions/interpreters/base_interpreter.py,sha256=
|
|
407
|
+
classiq/model_expansions/interpreters/base_interpreter.py,sha256=n_x_lRa_DtauoGO03IExU1sYuVJk4HpnOVY3wBgixJw,14651
|
|
409
408
|
classiq/model_expansions/interpreters/frontend_generative_interpreter.py,sha256=YKoZsv9rB1KZBQqKjpVh73CIla6QrsEB1dpa-Hlnrx4,3836
|
|
410
409
|
classiq/model_expansions/interpreters/generative_interpreter.py,sha256=_7rfmE7wc6VlJNoSj-ji2hZ4p230VR35jWG9bhW72K4,16337
|
|
411
410
|
classiq/model_expansions/quantum_operations/__init__.py,sha256=unuHvw4nfyOwE_UyOcyLNHJfr_ZutX7msHNZ8yrToDM,398
|
|
@@ -438,28 +437,29 @@ classiq/model_expansions/utils/handles_collector.py,sha256=AdbNN0yXaLRRvqIPSvexR
|
|
|
438
437
|
classiq/model_expansions/visitors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
439
438
|
classiq/model_expansions/visitors/boolean_expression_transformers.py,sha256=ReVGX16m-lYEt6oQWe52oBd_seyp2J3-mJfQqPPqVjk,7137
|
|
440
439
|
classiq/model_expansions/visitors/symbolic_param_inference.py,sha256=goLFicRmxFuambcJ6sJBXhjyZFSszPWDubu5Vjhjgl4,8412
|
|
441
|
-
classiq/model_expansions/visitors/uncomputation_signature_inference.py,sha256=
|
|
440
|
+
classiq/model_expansions/visitors/uncomputation_signature_inference.py,sha256=K8Xa7ZrIdtaUDULag25f2hKzG3iDBI25TfD305N9UWk,11856
|
|
442
441
|
classiq/model_expansions/visitors/variable_references.py,sha256=z6_vcra7sTak5mEhONXs77p7xO34Y8ZeeYCMuSfAui8,6587
|
|
443
442
|
classiq/open_library/__init__.py,sha256=bmg_qqXCXo85hcU7_QCce-qYGrpAVSFNwTKCClsclrg,114
|
|
444
|
-
classiq/open_library/functions/__init__.py,sha256
|
|
443
|
+
classiq/open_library/functions/__init__.py,sha256=-d_f_d21kiK_KMIEmuuH9ceuJlMTY1sfVYeNIbrhK9o,5047
|
|
445
444
|
classiq/open_library/functions/amplitude_amplification.py,sha256=WH2dqYbmmWHZX7beu7-EipnC6Gzn4En4D2gmB2sXvZI,3997
|
|
446
445
|
classiq/open_library/functions/amplitude_estimation.py,sha256=iCkca5SQN_HQoJWk1_tLT56fHT72hu5QIt2pxSZQRko,1766
|
|
447
446
|
classiq/open_library/functions/amplitude_loading.py,sha256=TN4Hq11RDk8JCXCKa6uZYi0Ch8CU9g9RP_IIZJ8tvX4,2844
|
|
447
|
+
classiq/open_library/functions/bit_operations.py,sha256=4WqE3jzkxxaoOq_C1ECMhdEyUcQbcqtQqFILigUqvtA,872
|
|
448
448
|
classiq/open_library/functions/discrete_sine_cosine_transform.py,sha256=F-yD4paGBFueWRK_Tr36aIxxBuzvXte1JtvizxKet68,4634
|
|
449
449
|
classiq/open_library/functions/encodings.py,sha256=0cNhkttdigvFhYJ6DQ-9Otkep3D6bd6Sx1e31X4ZIa4,6619
|
|
450
450
|
classiq/open_library/functions/grover.py,sha256=e5LlbHj-nfR_iAhmRei4BuFJOjDFJrb2rBwzdwB-xfg,4688
|
|
451
451
|
classiq/open_library/functions/hea.py,sha256=Nc9pj-4mGLZVQQKCaVRgrcPd4eViuz3Ji5ZeYzaCozg,4889
|
|
452
452
|
classiq/open_library/functions/lcu.py,sha256=MZcxrxWVSngyw888RpH4Yum9eaQC0vwAKwq5K5_kygU,5268
|
|
453
453
|
classiq/open_library/functions/linear_pauli_rotation.py,sha256=rjQTglfF1MVk1-Wmk6QWhUPOC7bOPRtBTttz7EjCfcc,2679
|
|
454
|
-
classiq/open_library/functions/
|
|
454
|
+
classiq/open_library/functions/modular_arithmetics.py,sha256=qfdHFHV2oMYgXhQC27fe55SujD_IEfRJMpJZXge9JsM,19996
|
|
455
455
|
classiq/open_library/functions/qaoa_penalty.py,sha256=bnsBlnLwmjAPB4CZ9m1SVPP-eGTnAKXXJwNB-_RuS_Y,4248
|
|
456
456
|
classiq/open_library/functions/qft_functions.py,sha256=7pdPBq48QvyQkxHrF3rEKTf0J50qUu_2bN17lfSc7I0,1382
|
|
457
|
+
classiq/open_library/functions/qft_space_arithmetics.py,sha256=Fx8FY-NOwxDxAFBg0CwopjEsOkHxrIXMjc2aLqWEo-s,2507
|
|
457
458
|
classiq/open_library/functions/qpe.py,sha256=e7MBpOthBn73BdqhWpNGT0lkd6Jw3ZG7tE6n--IM0jc,2140
|
|
458
459
|
classiq/open_library/functions/qsvt.py,sha256=5Y7S33XFj9olENmSFG-8pSvF5LwQlwk0LZJY7BTQNEY,14751
|
|
459
|
-
classiq/open_library/functions/
|
|
460
|
-
classiq/open_library/functions/state_preparation.py,sha256=Jea9I5PE_vvw9R_MDOwHskTpQbi35h18U2kr6ZseLTo,26020
|
|
460
|
+
classiq/open_library/functions/state_preparation.py,sha256=i1sJvjeZVFNHznQW-Nc0l72RJdz7z4yxv2v3bpAEhR8,26078
|
|
461
461
|
classiq/open_library/functions/swap_test.py,sha256=hAjiJjZGeJP2qzEkVYmBVlEK44VcNibWZ-KqJwPEcFY,1048
|
|
462
|
-
classiq/open_library/functions/utility_functions.py,sha256
|
|
462
|
+
classiq/open_library/functions/utility_functions.py,sha256=Z11eXeJ5xSEq3IY3DiX0-FOu35iQVg7k9um0CLs1OC0,3007
|
|
463
463
|
classiq/open_library/functions/variational.py,sha256=KYoqPKYRjgUXk_10RvogV0YiCG5kl7GZBHBJeeX82II,1715
|
|
464
464
|
classiq/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
465
465
|
classiq/qmod/__init__.py,sha256=8yDbZ-u56Q_awkE93JQpVIdeSNXO1-DOdKqTVfpV3ZU,985
|
|
@@ -472,12 +472,12 @@ classiq/qmod/builtins/functions/__init__.py,sha256=G4dvF1jAARf1PhmwSIs_eO7WWe4dm
|
|
|
472
472
|
classiq/qmod/builtins/functions/allocation.py,sha256=sPDC4yKa1HyNlJvUXyqPd0GEemhHd4cpGMWAd-v9osc,7413
|
|
473
473
|
classiq/qmod/builtins/functions/arithmetic.py,sha256=ikR4cDEYn0xyg1QS_F_ZFwtMLPezSN9XGuyc_C0pXnc,1846
|
|
474
474
|
classiq/qmod/builtins/functions/benchmarking.py,sha256=TYY1VRd5DHl-mKTKeW5wF1txZgFsb3yPXM_rdgoLWCo,250
|
|
475
|
-
classiq/qmod/builtins/functions/exponentiation.py,sha256=
|
|
475
|
+
classiq/qmod/builtins/functions/exponentiation.py,sha256=_f3AwL23PEciQIakAVGGzhizmYp6RGL8gz48ESgNaiM,10535
|
|
476
476
|
classiq/qmod/builtins/functions/mcx_func.py,sha256=PUsiY_0u53g-dYwX6uZ6mkthx2dV-_7yrgkIHyHgRtw,187
|
|
477
477
|
classiq/qmod/builtins/functions/mid_circuit_measurement.py,sha256=UYtVbsl1vZSBU7x64-3s5EgbZ28fbvGx86j30rsts3w,415
|
|
478
478
|
classiq/qmod/builtins/functions/operators.py,sha256=3IWFjUFhljY5CEe2ZU9Z8m33FzwM9E80IADcDcxVuNI,270
|
|
479
479
|
classiq/qmod/builtins/functions/standard_gates.py,sha256=xQD75C5clg2_GDqUlH5FhEFh-4VMUk0XHU2SwNRQn2k,16170
|
|
480
|
-
classiq/qmod/builtins/operations.py,sha256=
|
|
480
|
+
classiq/qmod/builtins/operations.py,sha256=FeJ-xWalX52MPQ_wBVFJPQtDAGV0J4a2brpU_rLhN-8,31599
|
|
481
481
|
classiq/qmod/builtins/structs.py,sha256=HMtbIi5IpEeekqSwigxY84EkKBUf8NtIiEvGkas4d94,5752
|
|
482
482
|
classiq/qmod/cfunc.py,sha256=BVHvgVXAZS1SyE0g8Q-1YEMhNO566V0hnl4LZJS3Eg0,1088
|
|
483
483
|
classiq/qmod/classical_function.py,sha256=QqG4Lg8qvd_OpfCsvI0Yv62DCG7tnY2otiXKPqy72EI,1115
|
|
@@ -490,18 +490,18 @@ classiq/qmod/generative.py,sha256=n9nCvzBjseGUfyX6TipFej77b_zRTnMv84OoOTA54oc,14
|
|
|
490
490
|
classiq/qmod/global_declarative_switch.py,sha256=30QOkNsDdsVdk14TNx-AetFbBskoXGpHQ-k--vNqVWc,427
|
|
491
491
|
classiq/qmod/model_state_container.py,sha256=ry8BB6Az8Cl8WMOyWih38pcPTa4NdMbVPyTCbkvRsso,2135
|
|
492
492
|
classiq/qmod/native/__init__.py,sha256=gm0L3ew0KAy0eSqaMQrvpnKWx85HoA1p9ADaAlyejdA,126
|
|
493
|
-
classiq/qmod/native/pretty_printer.py,sha256=
|
|
493
|
+
classiq/qmod/native/pretty_printer.py,sha256=25gkfSkVk6FmPrmvSL1F_uoLCgk9oCEHcy8xjicZ1pc,19752
|
|
494
494
|
classiq/qmod/pretty_print/__init__.py,sha256=jhR0cpXumOJnyb-zWnvMLpEuUOYPnnJ7DJmV-Zxpy1I,132
|
|
495
495
|
classiq/qmod/pretty_print/expression_to_python.py,sha256=H_ZeMkmRIAs4OS4VHxBdrX_0Lh0m189QAyO3xqeUdbg,7648
|
|
496
|
-
classiq/qmod/pretty_print/pretty_printer.py,sha256=
|
|
496
|
+
classiq/qmod/pretty_print/pretty_printer.py,sha256=cxx7RUpPIwmG5Ius4PKgiIHObMK5Ip79uvPr7bfnhUo,27442
|
|
497
497
|
classiq/qmod/python_classical_type.py,sha256=E-uJUKm0Ip5wWIhad5YHUZmIPpdFcy6ccuNnjddSQAs,4440
|
|
498
498
|
classiq/qmod/qfunc.py,sha256=vlDrjqnNpj3N7itAHZvI0JKoJ2c8YhWHOwtFnn0uyTA,5465
|
|
499
499
|
classiq/qmod/qmod_constant.py,sha256=aAP7o3ZYa_kwlQOiW0kFWfU5SyqEUVqeITBm6Njt6Js,5130
|
|
500
500
|
classiq/qmod/qmod_parameter.py,sha256=UtVLkHNxJWftpHsYc-AjHP8oYzXtFgSaxUnxFuefhJQ,6570
|
|
501
501
|
classiq/qmod/qmod_variable.py,sha256=EVuKQExplTf9zKJIsTJ4PAg2ScwMZyKp5j_cg2NQxhg,32502
|
|
502
|
-
classiq/qmod/quantum_callable.py,sha256=
|
|
503
|
-
classiq/qmod/quantum_expandable.py,sha256=
|
|
504
|
-
classiq/qmod/quantum_function.py,sha256=
|
|
502
|
+
classiq/qmod/quantum_callable.py,sha256=qkmvbBGFMmSf5mMGFFGfUMMmONsy8f05ZehvxN4WT88,2643
|
|
503
|
+
classiq/qmod/quantum_expandable.py,sha256=iKgBHMktdWP-KrqthGXkK6JtUOdW7cgfCLhRC2jL8Ew,19561
|
|
504
|
+
classiq/qmod/quantum_function.py,sha256=gnwKRH3HTu4YAMYS-VtpPt4wbw43u0uFB-j1xYUjhzY,17490
|
|
505
505
|
classiq/qmod/semantics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
506
506
|
classiq/qmod/semantics/annotation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
507
507
|
classiq/qmod/semantics/annotation/call_annotation.py,sha256=kieFypj0PSLam6jbxs9fOwr4rRZ_sI5FXBNnfQmPfYw,3887
|
|
@@ -522,12 +522,14 @@ classiq/qmod/symbolic.py,sha256=HtaHB7xz-KGt-tWmVw6Q4wlEq0MPLr99fPcbzqzdWoM,8178
|
|
|
522
522
|
classiq/qmod/symbolic_expr.py,sha256=z49EyU_bzqc8qOlaOWcWH8A87ACS6aIkYzsLC0DmUBU,7601
|
|
523
523
|
classiq/qmod/symbolic_type.py,sha256=27tY6pJMFt3EmXIKDJPrNFIUuanIlEu4OueseARbk10,260
|
|
524
524
|
classiq/qmod/type_attribute_remover.py,sha256=NZmTXAsngWqthXjE8n-n6yE72fiWTFM12-TXXJ1kJ-Q,1242
|
|
525
|
-
classiq/qmod/utilities.py,sha256=
|
|
525
|
+
classiq/qmod/utilities.py,sha256=3EiZ020Y5hX5SDZcGqSCUZ3SJA_-0CpW3Pra7mFwYfc,5521
|
|
526
526
|
classiq/qmod/write_qmod.py,sha256=8xiZKCpy0y5c246DRow22-2YQm7F_eSTXY2KJRFAeds,3495
|
|
527
527
|
classiq/quantum_program.py,sha256=9r1AvhPHDZb4lBEem5T5-mMqbojjyRWHysbJhAoNx80,2056
|
|
528
528
|
classiq/synthesis.py,sha256=RedYU2XVovqd1nmZU4Nb3b705gBlDarXDqQ1A7ug6C0,9852
|
|
529
|
+
classiq/synthesis_action/__init__.py,sha256=-LUXCVytknC5xKt4PFxxQ5YR4HQ4YDQhT5jcE7Qp_QA,393
|
|
530
|
+
classiq/synthesis_action/actions.py,sha256=tYkh-69thNsi3qZbrjdGqPwd-carpyLIYQS49r0LcGU,3648
|
|
529
531
|
classiq/visualization.py,sha256=SvLkPNN-RFd74wnH83eBNANjX11phBTo0wedTazr7VQ,975
|
|
530
|
-
classiq-0.
|
|
531
|
-
classiq-0.
|
|
532
|
-
classiq-0.
|
|
533
|
-
classiq-0.
|
|
532
|
+
classiq-0.102.0.dist-info/licenses/LICENSE.txt,sha256=pIUwTWPybNElw1us8qbLyUuGDCH1_YioM4ol5tg0Zzw,13367
|
|
533
|
+
classiq-0.102.0.dist-info/WHEEL,sha256=X16MKk8bp2DRsAuyteHJ-9qOjzmnY0x1aj0P1ftqqWA,78
|
|
534
|
+
classiq-0.102.0.dist-info/METADATA,sha256=dGbZHdgmXTl-q3q4T1IT2ZeT9WXuB26L6Gh2SerCJ-w,3745
|
|
535
|
+
classiq-0.102.0.dist-info/RECORD,,
|