classiq 0.66.1__py3-none-any.whl → 0.67.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/applications/finance/finance_model_constructor.py +9 -0
- classiq/applications/grover/grover_model_constructor.py +10 -0
- classiq/applications/qnn/qlayer.py +8 -2
- classiq/applications/qsvm/qsvm_model_constructor.py +9 -0
- classiq/interface/_version.py +1 -1
- classiq/interface/debug_info/debug_info.py +12 -0
- classiq/interface/exceptions.py +2 -5
- classiq/interface/generator/arith/argument_utils.py +1 -1
- classiq/interface/generator/arith/arithmetic.py +3 -1
- classiq/interface/generator/arith/binary_ops.py +3 -0
- classiq/interface/generator/function_param_list_without_self_reference.py +2 -0
- classiq/interface/generator/functions/type_name.py +2 -2
- classiq/interface/generator/generated_circuit_data.py +34 -1
- classiq/interface/generator/hardware_efficient_ansatz.py +1 -1
- classiq/interface/generator/hva.py +1 -1
- classiq/interface/generator/model/preferences/preferences.py +8 -1
- classiq/interface/generator/reset.py +14 -0
- classiq/interface/generator/ucc.py +1 -1
- classiq/interface/interface_version.py +1 -1
- classiq/interface/model/quantum_statement.py +13 -0
- classiq/model_expansions/atomic_expression_functions_defs.py +2 -1
- classiq/model_expansions/capturing/captured_vars.py +184 -54
- classiq/model_expansions/closure.py +6 -3
- classiq/model_expansions/evaluators/control.py +14 -38
- classiq/model_expansions/function_builder.py +19 -14
- classiq/model_expansions/generative_functions.py +7 -11
- classiq/model_expansions/interpreters/base_interpreter.py +14 -5
- classiq/model_expansions/interpreters/generative_interpreter.py +9 -8
- classiq/model_expansions/quantum_operations/allocate.py +6 -2
- classiq/model_expansions/quantum_operations/bind.py +65 -13
- classiq/model_expansions/quantum_operations/call_emitter.py +79 -10
- classiq/model_expansions/quantum_operations/classicalif.py +5 -2
- classiq/model_expansions/quantum_operations/emitter.py +8 -1
- classiq/model_expansions/quantum_operations/repeat.py +7 -2
- classiq/model_expansions/quantum_operations/shallow_emitter.py +1 -1
- classiq/model_expansions/quantum_operations/variable_decleration.py +11 -1
- classiq/open_library/functions/amplitude_amplification.py +4 -4
- classiq/open_library/functions/grover.py +5 -5
- classiq/qmod/builtins/functions/__init__.py +3 -0
- classiq/qmod/builtins/functions/mid_circuit_measurement.py +15 -0
- classiq/qmod/quantum_function.py +4 -0
- classiq/qmod/semantics/annotation/call_annotation.py +8 -2
- classiq/qmod/semantics/annotation/model_annotation.py +9 -0
- classiq/qmod/semantics/error_manager.py +0 -6
- classiq/qmod/semantics/static_semantics_visitor.py +0 -347
- {classiq-0.66.1.dist-info → classiq-0.67.0.dist-info}/METADATA +1 -1
- {classiq-0.66.1.dist-info → classiq-0.67.0.dist-info}/RECORD +48 -47
- classiq/qmod/semantics/validation/func_call_validation.py +0 -99
- classiq/qmod/semantics/validation/handle_validation.py +0 -85
- {classiq-0.66.1.dist-info → classiq-0.67.0.dist-info}/WHEEL +0 -0
@@ -1,347 +0,0 @@
|
|
1
|
-
import ast
|
2
|
-
from collections.abc import Iterator, Mapping, Sequence
|
3
|
-
from contextlib import contextmanager
|
4
|
-
from typing import (
|
5
|
-
Optional,
|
6
|
-
)
|
7
|
-
|
8
|
-
from classiq.interface.exceptions import ClassiqSemanticError
|
9
|
-
from classiq.interface.generator.expressions.expression import Expression
|
10
|
-
from classiq.interface.generator.function_params import PortDirection
|
11
|
-
from classiq.interface.generator.functions.classical_type import CLASSICAL_ATTRIBUTES
|
12
|
-
from classiq.interface.generator.functions.concrete_types import ConcreteQuantumType
|
13
|
-
from classiq.interface.generator.functions.port_declaration import (
|
14
|
-
PortDeclarationDirection,
|
15
|
-
)
|
16
|
-
from classiq.interface.model.handle_binding import (
|
17
|
-
FieldHandleBinding,
|
18
|
-
HandleBinding,
|
19
|
-
SlicedHandleBinding,
|
20
|
-
SubscriptHandleBinding,
|
21
|
-
)
|
22
|
-
from classiq.interface.model.inplace_binary_operation import InplaceBinaryOperation
|
23
|
-
from classiq.interface.model.model import Model
|
24
|
-
from classiq.interface.model.model_visitor import ModelVisitor
|
25
|
-
from classiq.interface.model.native_function_definition import NativeFunctionDefinition
|
26
|
-
from classiq.interface.model.port_declaration import PortDeclaration
|
27
|
-
from classiq.interface.model.quantum_expressions.quantum_expression import (
|
28
|
-
QuantumExpressionOperation,
|
29
|
-
)
|
30
|
-
from classiq.interface.model.quantum_function_call import QuantumFunctionCall
|
31
|
-
from classiq.interface.model.quantum_function_declaration import (
|
32
|
-
QuantumFunctionDeclaration,
|
33
|
-
QuantumOperandDeclaration,
|
34
|
-
)
|
35
|
-
from classiq.interface.model.quantum_lambda_function import (
|
36
|
-
QuantumLambdaFunction,
|
37
|
-
)
|
38
|
-
from classiq.interface.model.quantum_statement import HandleMetadata, QuantumOperation
|
39
|
-
from classiq.interface.model.validation_handle import HandleState
|
40
|
-
from classiq.interface.model.variable_declaration_statement import (
|
41
|
-
VariableDeclarationStatement,
|
42
|
-
)
|
43
|
-
from classiq.interface.model.within_apply_operation import WithinApply
|
44
|
-
|
45
|
-
from classiq.model_expansions.visitors.variable_references import VarRefCollector
|
46
|
-
from classiq.qmod.builtins.functions import (
|
47
|
-
BUILTIN_FUNCTION_DECLARATIONS,
|
48
|
-
)
|
49
|
-
from classiq.qmod.semantics.annotation.call_annotation import resolve_function_calls
|
50
|
-
from classiq.qmod.semantics.annotation.qstruct_annotator import QStructAnnotator
|
51
|
-
from classiq.qmod.semantics.error_manager import ErrorManager
|
52
|
-
from classiq.qmod.semantics.lambdas import get_renamed_parameters
|
53
|
-
from classiq.qmod.semantics.validation.func_call_validation import (
|
54
|
-
check_no_overlapping_quantum_args,
|
55
|
-
validate_call_arguments,
|
56
|
-
)
|
57
|
-
from classiq.qmod.semantics.validation.handle_validation import resolve_handle
|
58
|
-
|
59
|
-
HANDLE_BINDING_PART_MESSAGE = {
|
60
|
-
SubscriptHandleBinding: "array subscript",
|
61
|
-
SlicedHandleBinding: "array slice",
|
62
|
-
FieldHandleBinding: "field access",
|
63
|
-
}
|
64
|
-
|
65
|
-
|
66
|
-
class StaticScope:
|
67
|
-
def __init__(
|
68
|
-
self,
|
69
|
-
parameters: list[str],
|
70
|
-
operands: dict[str, QuantumOperandDeclaration],
|
71
|
-
variables_to_states: dict[str, HandleState],
|
72
|
-
variables_to_types: dict[str, ConcreteQuantumType],
|
73
|
-
) -> None:
|
74
|
-
self.parameters = parameters
|
75
|
-
self.operands = operands
|
76
|
-
self.variable_states = variables_to_states
|
77
|
-
self.variables_to_types = variables_to_types
|
78
|
-
|
79
|
-
|
80
|
-
class StaticSemanticsVisitor(ModelVisitor):
|
81
|
-
def __init__(
|
82
|
-
self,
|
83
|
-
functions_dict: Mapping[str, QuantumFunctionDeclaration],
|
84
|
-
constants: list[str],
|
85
|
-
) -> None:
|
86
|
-
self._scope: list[StaticScope] = []
|
87
|
-
self._error_manager = ErrorManager()
|
88
|
-
self._functions_dict = functions_dict
|
89
|
-
self._constants = constants
|
90
|
-
|
91
|
-
@property
|
92
|
-
def current_scope(self) -> StaticScope:
|
93
|
-
return self._scope[-1]
|
94
|
-
|
95
|
-
@contextmanager
|
96
|
-
def scoped_visit(self, scope: StaticScope) -> Iterator[None]:
|
97
|
-
self._scope.append(scope)
|
98
|
-
yield
|
99
|
-
self._scope.pop()
|
100
|
-
|
101
|
-
def visit_Model(self, model: Model) -> None:
|
102
|
-
self.visit_BaseModel(model)
|
103
|
-
|
104
|
-
def visit_NativeFunctionDefinition(
|
105
|
-
self, func_def: NativeFunctionDefinition
|
106
|
-
) -> None:
|
107
|
-
scope = StaticScope(
|
108
|
-
parameters=list(func_def.param_names) + self._constants,
|
109
|
-
operands=dict(func_def.operand_declarations_dict),
|
110
|
-
variables_to_states=initialize_variables_to_state(
|
111
|
-
func_def.port_declarations
|
112
|
-
),
|
113
|
-
variables_to_types={
|
114
|
-
port.name: port.quantum_type for port in func_def.port_declarations
|
115
|
-
},
|
116
|
-
)
|
117
|
-
with self.scoped_visit(scope), self._error_manager.call(func_def.name):
|
118
|
-
if len(func_def.body) == 0:
|
119
|
-
return
|
120
|
-
self.visit(func_def.body)
|
121
|
-
with self._error_manager.node_context(func_def.body[-1]):
|
122
|
-
for port_decl in func_def.port_declarations:
|
123
|
-
handle_state = self.current_scope.variable_states[port_decl.name]
|
124
|
-
expected_terminal_state = EXPECTED_TERMINAL_STATES.get(
|
125
|
-
port_decl.direction
|
126
|
-
)
|
127
|
-
if (
|
128
|
-
expected_terminal_state is not None
|
129
|
-
and handle_state is not expected_terminal_state
|
130
|
-
):
|
131
|
-
self._error_manager.add_error(
|
132
|
-
f"At the end of the function, variable {port_decl.name!r} is expected to be {expected_terminal_state.name.lower()} but it isn't"
|
133
|
-
)
|
134
|
-
|
135
|
-
def visit_WithinApply(self, within_apply: WithinApply) -> None:
|
136
|
-
initial_variables_to_state = self.current_scope.variable_states.copy()
|
137
|
-
scope = StaticScope(
|
138
|
-
parameters=self.current_scope.parameters,
|
139
|
-
operands=self.current_scope.operands,
|
140
|
-
variables_to_states=self.current_scope.variable_states.copy(),
|
141
|
-
variables_to_types=self.current_scope.variables_to_types.copy(),
|
142
|
-
)
|
143
|
-
with self.scoped_visit(scope):
|
144
|
-
self.visit(within_apply.compute)
|
145
|
-
compute_captured_variables = {
|
146
|
-
var
|
147
|
-
for var, state in self.current_scope.variable_states.items()
|
148
|
-
if var in initial_variables_to_state
|
149
|
-
and state != initial_variables_to_state[var]
|
150
|
-
}
|
151
|
-
self.visit(within_apply.action)
|
152
|
-
variables_to_state = self.current_scope.variable_states.copy()
|
153
|
-
self.current_scope.variable_states.update(
|
154
|
-
{
|
155
|
-
var: state
|
156
|
-
for var, state in variables_to_state.items()
|
157
|
-
if var in self.current_scope.variable_states
|
158
|
-
and var not in compute_captured_variables
|
159
|
-
}
|
160
|
-
)
|
161
|
-
|
162
|
-
def visit_QuantumOperation(self, op: QuantumOperation) -> None:
|
163
|
-
with self._error_manager.node_context(op):
|
164
|
-
if isinstance(op, QuantumFunctionCall):
|
165
|
-
validate_call_arguments(
|
166
|
-
op,
|
167
|
-
{
|
168
|
-
**self._functions_dict,
|
169
|
-
**self.current_scope.operands,
|
170
|
-
},
|
171
|
-
)
|
172
|
-
elif isinstance(op, InplaceBinaryOperation) and isinstance(
|
173
|
-
op.value, HandleBinding
|
174
|
-
):
|
175
|
-
check_no_overlapping_quantum_args(
|
176
|
-
[op.target, op.value], op.operation.value
|
177
|
-
)
|
178
|
-
self._handle_inputs(op.readable_inputs)
|
179
|
-
self._handle_outputs(op.readable_outputs)
|
180
|
-
self._handle_inouts(op.readable_inouts)
|
181
|
-
self.generic_visit(op)
|
182
|
-
|
183
|
-
def visit_VariableDeclarationStatement(
|
184
|
-
self, declaration: VariableDeclarationStatement
|
185
|
-
) -> None:
|
186
|
-
handle_wiring_state = self.current_scope.variable_states.get(declaration.name)
|
187
|
-
if handle_wiring_state is not None:
|
188
|
-
self._error_manager.add_error(
|
189
|
-
f"Trying to declare a variable of the same name as previously declared variable {declaration.name}"
|
190
|
-
)
|
191
|
-
return
|
192
|
-
|
193
|
-
self.current_scope.variable_states[declaration.name] = HandleState.UNINITIALIZED
|
194
|
-
self.current_scope.variables_to_types[declaration.name] = (
|
195
|
-
declaration.quantum_type
|
196
|
-
)
|
197
|
-
|
198
|
-
def visit_QuantumLambdaFunction(self, lambda_func: QuantumLambdaFunction) -> None:
|
199
|
-
renamed_parameters, renamed_operands, renamed_ports = get_renamed_parameters(
|
200
|
-
lambda_func
|
201
|
-
)
|
202
|
-
scope = StaticScope(
|
203
|
-
parameters=self.current_scope.parameters + renamed_parameters,
|
204
|
-
operands={**self.current_scope.operands, **renamed_operands},
|
205
|
-
variables_to_states={
|
206
|
-
**self.current_scope.variable_states.copy(),
|
207
|
-
**initialize_variables_to_state(renamed_ports),
|
208
|
-
},
|
209
|
-
variables_to_types=self.current_scope.variables_to_types
|
210
|
-
| {port.name: port.quantum_type for port in renamed_ports},
|
211
|
-
)
|
212
|
-
with self.scoped_visit(scope):
|
213
|
-
self.generic_visit(lambda_func)
|
214
|
-
|
215
|
-
def visit_HandleBinding(self, handle: HandleBinding) -> None:
|
216
|
-
resolve_handle(self.current_scope, handle)
|
217
|
-
|
218
|
-
def visit_Expression(self, expr: Expression) -> None:
|
219
|
-
if len(self._scope) == 0:
|
220
|
-
return
|
221
|
-
vrc = VarRefCollector(ignore_duplicated_handles=True, unevaluated=True)
|
222
|
-
vrc.visit(ast.parse(expr.expr))
|
223
|
-
handles = [
|
224
|
-
HandleMetadata(handle=handle)
|
225
|
-
for handle in vrc.var_handles
|
226
|
-
if handle.name in self.current_scope.variable_states
|
227
|
-
and (
|
228
|
-
not isinstance(handle, FieldHandleBinding)
|
229
|
-
or handle.field not in CLASSICAL_ATTRIBUTES
|
230
|
-
)
|
231
|
-
]
|
232
|
-
self._handle_inouts(handles)
|
233
|
-
|
234
|
-
def visit_QuantumExpressionOperation(self, op: QuantumExpressionOperation) -> None:
|
235
|
-
self.visit_Expression(op.expression)
|
236
|
-
self.visit_QuantumOperation(op)
|
237
|
-
|
238
|
-
def _handle_state_changing_ios(
|
239
|
-
self,
|
240
|
-
ios: Sequence[HandleMetadata],
|
241
|
-
state: HandleState,
|
242
|
-
state_change_verb: str,
|
243
|
-
) -> None:
|
244
|
-
for handle_metadata in ios:
|
245
|
-
handle_binding = handle_metadata.handle
|
246
|
-
if isinstance(
|
247
|
-
handle_binding,
|
248
|
-
(SubscriptHandleBinding, SlicedHandleBinding, FieldHandleBinding),
|
249
|
-
):
|
250
|
-
self._error_manager.add_error(
|
251
|
-
f"Cannot use {HANDLE_BINDING_PART_MESSAGE[type(handle_binding)]} of variable {handle_binding.name!r} in {state_change_verb} context"
|
252
|
-
)
|
253
|
-
continue
|
254
|
-
handle_wiring_state = self.current_scope.variable_states.get(
|
255
|
-
handle_binding.name
|
256
|
-
)
|
257
|
-
if handle_wiring_state is not state:
|
258
|
-
state_prefix = (
|
259
|
-
""
|
260
|
-
if handle_wiring_state is None
|
261
|
-
else f"{handle_wiring_state.name.lower()} "
|
262
|
-
)
|
263
|
-
location = (
|
264
|
-
f" {handle_metadata.readable_location}"
|
265
|
-
if handle_metadata.readable_location is not None
|
266
|
-
else ""
|
267
|
-
)
|
268
|
-
self._error_manager.add_error(
|
269
|
-
f"Cannot use {state_prefix}quantum variable {handle_binding.name!r}"
|
270
|
-
f"{location}"
|
271
|
-
)
|
272
|
-
|
273
|
-
self.current_scope.variable_states[handle_binding.name] = ~state
|
274
|
-
|
275
|
-
def _handle_inputs(self, inputs: Sequence[HandleMetadata]) -> None:
|
276
|
-
self._handle_state_changing_ios(
|
277
|
-
inputs, HandleState.INITIALIZED, "uninitialization"
|
278
|
-
)
|
279
|
-
|
280
|
-
def _handle_outputs(self, outputs: Sequence[HandleMetadata]) -> None:
|
281
|
-
self._handle_state_changing_ios(
|
282
|
-
outputs, HandleState.UNINITIALIZED, "initialization"
|
283
|
-
)
|
284
|
-
|
285
|
-
def _handle_inouts(self, inouts: Sequence[HandleMetadata]) -> None:
|
286
|
-
for handle_metadata in inouts:
|
287
|
-
handle_binding = handle_metadata.handle
|
288
|
-
|
289
|
-
if handle_binding.name not in self.current_scope.variable_states:
|
290
|
-
ErrorManager().add_error(
|
291
|
-
f"Variable {handle_binding.name!r} is not defined"
|
292
|
-
)
|
293
|
-
return
|
294
|
-
handle_wiring_state = self.current_scope.variable_states[
|
295
|
-
handle_binding.name
|
296
|
-
]
|
297
|
-
|
298
|
-
if handle_wiring_state is not HandleState.INITIALIZED:
|
299
|
-
state_prefix = (
|
300
|
-
""
|
301
|
-
if handle_wiring_state is None
|
302
|
-
else f"{handle_wiring_state.name.lower()} "
|
303
|
-
)
|
304
|
-
location = (
|
305
|
-
f" {handle_metadata.readable_location}"
|
306
|
-
if handle_metadata.readable_location is not None
|
307
|
-
else ""
|
308
|
-
)
|
309
|
-
self._error_manager.add_error(
|
310
|
-
f"Cannot use {state_prefix}quantum variable {handle_binding.name!r}"
|
311
|
-
f"{location}"
|
312
|
-
)
|
313
|
-
|
314
|
-
|
315
|
-
def static_semantics_analysis_pass(
|
316
|
-
model: Model, error_type: Optional[type[Exception]] = ClassiqSemanticError
|
317
|
-
) -> None:
|
318
|
-
QStructAnnotator().visit(model)
|
319
|
-
functions = {**BUILTIN_FUNCTION_DECLARATIONS, **model.function_dict}
|
320
|
-
resolve_function_calls(model, functions)
|
321
|
-
StaticSemanticsVisitor(
|
322
|
-
functions,
|
323
|
-
[const.name for const in model.constants],
|
324
|
-
).visit(model)
|
325
|
-
if error_type is not None:
|
326
|
-
ErrorManager().report_errors(error_type)
|
327
|
-
|
328
|
-
|
329
|
-
EXPECTED_TERMINAL_STATES: dict[PortDeclarationDirection, HandleState] = {
|
330
|
-
PortDeclarationDirection.Output: HandleState.INITIALIZED,
|
331
|
-
PortDeclarationDirection.Inout: HandleState.INITIALIZED,
|
332
|
-
}
|
333
|
-
|
334
|
-
|
335
|
-
def initialize_variables_to_state(
|
336
|
-
port_declarations: Sequence[PortDeclaration],
|
337
|
-
) -> dict[str, HandleState]:
|
338
|
-
variables_to_state: dict[str, HandleState] = dict()
|
339
|
-
|
340
|
-
for port_decl in port_declarations:
|
341
|
-
variables_to_state[port_decl.name] = (
|
342
|
-
HandleState.INITIALIZED
|
343
|
-
if port_decl.direction.includes_port_direction(PortDirection.Input)
|
344
|
-
else HandleState.UNINITIALIZED
|
345
|
-
)
|
346
|
-
|
347
|
-
return variables_to_state
|
@@ -61,9 +61,9 @@ classiq/applications/combinatorial_optimization/combinatorial_optimization_model
|
|
61
61
|
classiq/applications/combinatorial_optimization/combinatorial_problem.py,sha256=RWkvqBpLSxTc0qs5YVv9QddegCvPIfEvopeNln_24Lw,8015
|
62
62
|
classiq/applications/combinatorial_optimization/examples/__init__.py,sha256=A0-j2W4dT6eyvRvIoUzK3trntkda3IBpX-tch8evi1M,1725
|
63
63
|
classiq/applications/finance/__init__.py,sha256=1ntNgF5XLrAWhjvgncAdVIG0w80J8dmADySCK_xz2Tk,355
|
64
|
-
classiq/applications/finance/finance_model_constructor.py,sha256=
|
64
|
+
classiq/applications/finance/finance_model_constructor.py,sha256=hDSMSDaAK3Q0D_V7bKBaPrNvP-zLZcHQtivKQShHa-k,6862
|
65
65
|
classiq/applications/grover/__init__.py,sha256=km-ge2yKYpPKSDdGJLsloMaOQx6jwfkQ9uBVv-j04hU,155
|
66
|
-
classiq/applications/grover/grover_model_constructor.py,sha256=
|
66
|
+
classiq/applications/grover/grover_model_constructor.py,sha256=9xPP-ZcHWvwxrRpFcwrRN_BMUBTY87BxD1EPjMnrfG8,6456
|
67
67
|
classiq/applications/hamiltonian/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
68
68
|
classiq/applications/hamiltonian/pauli_decomposition.py,sha256=2yBve2bpPMKo5KcYk8Pe67-oU30O78K3wzeJPg1R1GY,3968
|
69
69
|
classiq/applications/libraries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -80,13 +80,13 @@ classiq/applications/qnn/datasets/datasets_utils.py,sha256=LgerS3HPe82gVTMg6YLWF
|
|
80
80
|
classiq/applications/qnn/gradients/__init__.py,sha256=md5sLINVaPeZUHJUe1ZtIcqLN_V_I2RKfBe3mO3zZs4,102
|
81
81
|
classiq/applications/qnn/gradients/quantum_gradient.py,sha256=SPEcaZA1Yi86_GVYOs5zfn6JNY6bpmKdoICOgMOsNUY,1287
|
82
82
|
classiq/applications/qnn/gradients/simple_quantum_gradient.py,sha256=uAXA718ql_uL87FnvbcRTQ_2s8MmhybSzgignAiQJ30,5049
|
83
|
-
classiq/applications/qnn/qlayer.py,sha256=
|
83
|
+
classiq/applications/qnn/qlayer.py,sha256=VfRJrk3Ybg7FRcAU7D8eRbYxVPTDygp13iX6a23C2oA,9084
|
84
84
|
classiq/applications/qnn/torch_utils.py,sha256=29y7eu8XQMkUK5C6obGXd-5txCPw0P7OkZSiAD4gX1w,4429
|
85
85
|
classiq/applications/qnn/types.py,sha256=0MNZW1b9GsqCT3vgLn5c_c-v9U4QGsWfgdALVscHAa8,906
|
86
86
|
classiq/applications/qsvm/__init__.py,sha256=FQ5hxBPPxW6uX7Csp9YGh1fA3tzr3fCTru3x6PhENLY,276
|
87
87
|
classiq/applications/qsvm/qsvm.py,sha256=vuc7TDHcxN9VvPRDufRmXcIVHkCpzjz2QuY48WJN6Is,177
|
88
88
|
classiq/applications/qsvm/qsvm_data_generation.py,sha256=BIXBAxYNAvwZi1pVQJeSPTa5b5CTRaejuAlBgyy3d9E,1604
|
89
|
-
classiq/applications/qsvm/qsvm_model_constructor.py,sha256=
|
89
|
+
classiq/applications/qsvm/qsvm_model_constructor.py,sha256=9yknE3oDe1sDKtN3efeqVxmMjYIDAvMPUugNfzTH2Jk,4495
|
90
90
|
classiq/execution/__init__.py,sha256=91aJlyrskj_FLmT-2atwIucYKAKsg4o8ZOR15axBFPM,1165
|
91
91
|
classiq/execution/all_hardware_devices.py,sha256=KpLefEISE03FDdgFPGggXeG7NAxBW4090gN4272Dl-E,368
|
92
92
|
classiq/execution/execution_session.py,sha256=Wr6kJjdBU1yrrBDxopBHdZowyy2WSC1-7D8kH1cudkw,16910
|
@@ -95,7 +95,7 @@ classiq/execution/jobs.py,sha256=hRZK5n8xOdT67rb_qnGeb30MiTHax00uCaBgRr7usYE,109
|
|
95
95
|
classiq/execution/qnn.py,sha256=WGPvncz5uS2WxSY3-yBWt2LFiCk6Ug8WKWF-Kp-f7TM,2403
|
96
96
|
classiq/executor.py,sha256=JukmHbvH43cXWBzr1-LPk5gDz4LItJncEUaghZwmldY,2686
|
97
97
|
classiq/interface/__init__.py,sha256=cg7hD_XVu1_jJ1fgwmT0rMIoZHopNVeB8xtlmMx-E_A,83
|
98
|
-
classiq/interface/_version.py,sha256=
|
98
|
+
classiq/interface/_version.py,sha256=KAdpBo9J3PBap6xx-ONQo3jUahkv872cTuKJydlJOaY,197
|
99
99
|
classiq/interface/analyzer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
100
100
|
classiq/interface/analyzer/analysis_params.py,sha256=dM5rwSks798cxk4FWe4_X5ToRYtgZQh34F1u0XrFkK8,3881
|
101
101
|
classiq/interface/analyzer/cytoscape_graph.py,sha256=MpeRBIYS1TfwYwiFpgTO51IE0KoxhY510pmEM3S0rbw,2361
|
@@ -141,9 +141,9 @@ classiq/interface/combinatorial_optimization/result.py,sha256=kDGShpwzhp8KOibngo
|
|
141
141
|
classiq/interface/combinatorial_optimization/sense.py,sha256=P8_kJRf3aUKbCkIqOP3tOc81Vpz9yW4Z74RGaYbd9TA,262
|
142
142
|
classiq/interface/combinatorial_optimization/solver_types.py,sha256=kcLt80fQucq_DWmJXmmVljwCGV4gtDnqOMlJdemhPQc,135
|
143
143
|
classiq/interface/debug_info/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
144
|
-
classiq/interface/debug_info/debug_info.py,sha256=
|
144
|
+
classiq/interface/debug_info/debug_info.py,sha256=p1IMfP5T9vcPO83FVyK5930JQKgErQVcjP4aEZqrf94,3682
|
145
145
|
classiq/interface/enum_utils.py,sha256=QxkxLGgON8vdSzLZzHFlPEBJoGOqoIwpESEfLfRqN0w,312
|
146
|
-
classiq/interface/exceptions.py,sha256=
|
146
|
+
classiq/interface/exceptions.py,sha256=fXl3esnLP03zds09BLxIJSN4aIwx2PVPX0Do8awfLjg,4418
|
147
147
|
classiq/interface/execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
148
148
|
classiq/interface/execution/iqcc.py,sha256=pS4c4y37i8NtKRcXDtamdir7021A82w0gSw5Ar368kQ,838
|
149
149
|
classiq/interface/execution/jobs.py,sha256=YBHJY4jbZnWILHW-Hm4WUh8bhjfbJAG3pEIAu9EY-O8,736
|
@@ -182,8 +182,8 @@ classiq/interface/generator/application_apis/entangler_declarations.py,sha256=A_
|
|
182
182
|
classiq/interface/generator/application_apis/finance_declarations.py,sha256=RfDMCOvABEOtRD3me24KeWwc1Xo7lVNyVDHX7tm39Y8,3816
|
183
183
|
classiq/interface/generator/application_apis/qsvm_declarations.py,sha256=oDJ_74RDuitACGcHWUXGNo2JGMY8qzEIrP7mStDJ0rQ,100
|
184
184
|
classiq/interface/generator/arith/__init__.py,sha256=3_jBZcaL8gQOiWx9lDj84K6rmJG2p_8MGCBw1aMtddg,135
|
185
|
-
classiq/interface/generator/arith/argument_utils.py,sha256=
|
186
|
-
classiq/interface/generator/arith/arithmetic.py,sha256=
|
185
|
+
classiq/interface/generator/arith/argument_utils.py,sha256=2Q3KO4EEOehjwgKU2syrrzDOpSJSMqMB1U_r5ClJ7LM,3111
|
186
|
+
classiq/interface/generator/arith/arithmetic.py,sha256=niUjyGe05EDrvxCPDVpmXfMyUHzmeKaGZOXUDDlGTX4,4469
|
187
187
|
classiq/interface/generator/arith/arithmetic_arg_type_validator.py,sha256=k7e9nIQOTJ1Dk1PD7jXZFBATbZNR93Lok-OVq6riZYI,1177
|
188
188
|
classiq/interface/generator/arith/arithmetic_expression_abc.py,sha256=c9T_5m9B6Lq7vgNt3u1o8MGHSFo3OJJc9EdpaXP8Yqk,7168
|
189
189
|
classiq/interface/generator/arith/arithmetic_expression_parser.py,sha256=rdzpQkfyxwr1gFm3s96H-qNyi0RKlkBpwx8RJPsM3Ac,5371
|
@@ -192,7 +192,7 @@ classiq/interface/generator/arith/arithmetic_operations.py,sha256=xwX4POh11BGSsF
|
|
192
192
|
classiq/interface/generator/arith/arithmetic_param_getters.py,sha256=P0RWHhu7UiWJ_qjF_SRW6GUcVtyAr8HFgZde3Lau3kQ,13367
|
193
193
|
classiq/interface/generator/arith/arithmetic_result_builder.py,sha256=XYBz7ZwX47GkJG-U2Bh2vE1iJGX-IcRw811_MDGegMI,4231
|
194
194
|
classiq/interface/generator/arith/ast_node_rewrite.py,sha256=m3-PZfeewz_YAXn847DK-gAPtdWQzJo7Rg6WBjOvNzw,2796
|
195
|
-
classiq/interface/generator/arith/binary_ops.py,sha256=
|
195
|
+
classiq/interface/generator/arith/binary_ops.py,sha256=hUA8alLxjJcoo3shCJygNai3XxnKUO_Oof0yPAFh1AY,31586
|
196
196
|
classiq/interface/generator/arith/endianness.py,sha256=buplQY6swjKczmnGbyNxu9JqvzZcNPyjQdOePd9pPCA,116
|
197
197
|
classiq/interface/generator/arith/extremum_operations.py,sha256=o1iQw8Rnqlo97XZ7icbECrROAVsgv-k3Ut7ybVy7iSQ,6317
|
198
198
|
classiq/interface/generator/arith/logical_ops.py,sha256=Eso-FvZKRhPFwAuOlOVdXAySMvYVb_mZh1DYM0eKfbA,2681
|
@@ -238,7 +238,7 @@ classiq/interface/generator/expressions/type_proxy.py,sha256=2TSxdmmhnz78jxzPTqG
|
|
238
238
|
classiq/interface/generator/finance.py,sha256=qlaBNQomMaxkbHjxXKZ2O9w9LK3im4_hyGPsigcbXT8,3968
|
239
239
|
classiq/interface/generator/function_param_library.py,sha256=MzxtngUMoyRxxTZ3CRH_OR23Q5S-cxuxDsH0qwY-ZiM,630
|
240
240
|
classiq/interface/generator/function_param_list.py,sha256=C__iX_ETyhm6B-ecfzFUQY7Tyz6aMVWx8_6ZUQuPg3M,503
|
241
|
-
classiq/interface/generator/function_param_list_without_self_reference.py,sha256=
|
241
|
+
classiq/interface/generator/function_param_list_without_self_reference.py,sha256=RE2eQ__0defLCHUQtFGzglAGFoDghFv0n7dUXLzuX04,5667
|
242
242
|
classiq/interface/generator/function_params.py,sha256=qo0JrN5nbNmh3nB2WUMftMS-c4o-oCh6KnljLBe7bLg,9677
|
243
243
|
classiq/interface/generator/functions/__init__.py,sha256=HXHq8Fw2zHG3AYuRXrDEQdJ-CEFX7ibsNCp8czuCmmM,73
|
244
244
|
classiq/interface/generator/functions/builtins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -249,8 +249,8 @@ classiq/interface/generator/functions/concrete_types.py,sha256=odTCFSdBXx2vjRxGc
|
|
249
249
|
classiq/interface/generator/functions/function_declaration.py,sha256=G0kjoaQeW_OvTTy6TwcKC0BW1pJBn_osIf_Cydj_0ew,595
|
250
250
|
classiq/interface/generator/functions/port_declaration.py,sha256=ESJE_19jOg_zS1reFN5dq0xgobZ6J3C3DsIs6EME1c4,1100
|
251
251
|
classiq/interface/generator/functions/qmod_python_interface.py,sha256=x8GA4Cr6YyfC6prGXv0A0I9G9GSnLHNito2nfN1GZDI,93
|
252
|
-
classiq/interface/generator/functions/type_name.py,sha256=
|
253
|
-
classiq/interface/generator/generated_circuit_data.py,sha256=
|
252
|
+
classiq/interface/generator/functions/type_name.py,sha256=hpdIlNw4YWQNMt9SaX_QbDysrAdenDGYomiGIYw-RKk,2898
|
253
|
+
classiq/interface/generator/generated_circuit_data.py,sha256=_OmBXLwP9gE3D7sWwP2obszjacDVD55yRTnYK9neRC4,9715
|
254
254
|
classiq/interface/generator/grover_diffuser.py,sha256=c52p2_hpjBO0qUDsqFMQ_xffBIDPJlrfz3kIy2Mh2Gk,3750
|
255
255
|
classiq/interface/generator/grover_operator.py,sha256=_VzBJ3qO0O0MJzsHf8LF7_ooXnsz1p_I5rjQQFf1Ptg,4119
|
256
256
|
classiq/interface/generator/hadamard_transform.py,sha256=NI4oZBpDCGfaw2OTb5SL3iSGI_nDtyUgElTCO4pEKnk,673
|
@@ -261,9 +261,9 @@ classiq/interface/generator/hamiltonian_evolution/qdrift.py,sha256=IFF015sz0gaqX
|
|
261
261
|
classiq/interface/generator/hamiltonian_evolution/suzuki_trotter.py,sha256=JCYnbixIv5tZzDU4CTPW0m44Il7-NeAow4MgjAw0-K4,1957
|
262
262
|
classiq/interface/generator/hardware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
263
263
|
classiq/interface/generator/hardware/hardware_data.py,sha256=4-NXWZJ4DUSmoUbVwgd5niy3NxBaCdIW5GG-s-OvIH4,8622
|
264
|
-
classiq/interface/generator/hardware_efficient_ansatz.py,sha256=
|
264
|
+
classiq/interface/generator/hardware_efficient_ansatz.py,sha256=zaPWWjsChqroSIW-rAEtSgqR8vzeCQJeM09mMnQFP9g,5101
|
265
265
|
classiq/interface/generator/hartree_fock.py,sha256=5oVtOi1JfICkZoFyKgcxIRgr8oTCIt95DKL_UJYxlQI,771
|
266
|
-
classiq/interface/generator/hva.py,sha256=
|
266
|
+
classiq/interface/generator/hva.py,sha256=WUASsN9Um_oMtoizJTCWBMOT9LifoDSAkclo_-bhxXI,594
|
267
267
|
classiq/interface/generator/identity.py,sha256=XDiA47DP7JirPaUMUqIQQgyahjWw7N3LGjF0LnZ5V_0,1263
|
268
268
|
classiq/interface/generator/linear_pauli_rotations.py,sha256=Vj_KkqqXC74zRndGqCULMtcZoAfSUpVLZLZYgxX55Vc,3808
|
269
269
|
classiq/interface/generator/mcmt_method.py,sha256=wKS3ivhErKhxmes6Mb1sUwaJgcg48wVCk63oP2za1vQ,232
|
@@ -273,7 +273,7 @@ classiq/interface/generator/model/__init__.py,sha256=iSabzwl3eN2iTRvdkRBmybAsy0o
|
|
273
273
|
classiq/interface/generator/model/constraints.py,sha256=8LM-2NT8jARIzehBLmR2Z1hHwpQT-TwezWvnt82tTBE,2575
|
274
274
|
classiq/interface/generator/model/model.py,sha256=0sxTWbXr_J5R-DfurZ_7ERFFVTdesTYWY6qownB5wOY,2573
|
275
275
|
classiq/interface/generator/model/preferences/__init__.py,sha256=KTNkU8hK3cpqzXvw_C1maxhBRTm1H53WUen1jJwZ0fQ,256
|
276
|
-
classiq/interface/generator/model/preferences/preferences.py,sha256=
|
276
|
+
classiq/interface/generator/model/preferences/preferences.py,sha256=RTgklkD7OOwFXpM5Q_la7wTVn9mbI87mq2DThHPwlsU,11816
|
277
277
|
classiq/interface/generator/model/preferences/randomness.py,sha256=nAI8Fu9NQ0uJxuwIQCUDspJKMCQVHBbvPNqCTtrBEos,248
|
278
278
|
classiq/interface/generator/model/quantum_register.py,sha256=_q5ASP_a5PrnpxN4aN2Yw00C1bh_KgIwiW1nTCRnuSw,8026
|
279
279
|
classiq/interface/generator/noise_properties.py,sha256=onvXd_FeBznwu1AcOpAkL7-fo9Dc6tPcAIiL5Qxs2Ok,425
|
@@ -295,6 +295,7 @@ classiq/interface/generator/quantum_program.py,sha256=UtRrE2epg_gXAjmtgvQzA8jqEQ
|
|
295
295
|
classiq/interface/generator/randomized_benchmarking.py,sha256=D6KI_1fMF5oBydaal2WLmTSit6xSMtz0yDAIZMMO89Q,635
|
296
296
|
classiq/interface/generator/range_types.py,sha256=X6CtSyimlpISz9QNbCdqqQkRg1pOGHEQCXy4aEeSwA4,2044
|
297
297
|
classiq/interface/generator/register_role.py,sha256=moerPIO9gQUuG5pe43TemmScSVjTK7_gi-qbrhIgLOA,1147
|
298
|
+
classiq/interface/generator/reset.py,sha256=wTCSLXkU6v3cCRDVZA0aoUHDZ9F7_m5QpqMi8QUeEFc,437
|
298
299
|
classiq/interface/generator/slice_parsing_utils.py,sha256=0vFaXi-UxTJHXLw0S-0tCaKhIwmRWzQnPhaHnYkuMeg,1972
|
299
300
|
classiq/interface/generator/standard_gates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
300
301
|
classiq/interface/generator/standard_gates/controlled_standard_gates.py,sha256=lFpM-Y0_A2uPIC1gfptvCfMKaC2N_0PWTtPSr8cfGYQ,5066
|
@@ -325,7 +326,7 @@ classiq/interface/generator/types/compilation_metadata.py,sha256=TumieFiKwpt7tuj
|
|
325
326
|
classiq/interface/generator/types/enum_declaration.py,sha256=NLSkIANe33qubSDGmxROhNFZNuIDcJjRA-ZRuKhiZ5g,1712
|
326
327
|
classiq/interface/generator/types/qstruct_declaration.py,sha256=Qw6cHW_elZmrs4UO0z7lgS7TWb0hEUEJ5Ur-Ko0bCR4,485
|
327
328
|
classiq/interface/generator/types/struct_declaration.py,sha256=2qKVV-pdqeUGiwKh2-5W2Ci4z0aQG4TG91MuQ82fa_A,959
|
328
|
-
classiq/interface/generator/ucc.py,sha256=
|
329
|
+
classiq/interface/generator/ucc.py,sha256=ZhjaEy4YJDkZwXLzlsFbjUn6k7ebyUJ_qKdLmxdxvp8,2699
|
329
330
|
classiq/interface/generator/unitary_gate.py,sha256=UWL1F2lX3hkazyyFJvuaFu5SOrQumAVf5392IIXVf4M,1885
|
330
331
|
classiq/interface/generator/user_defined_function_params.py,sha256=ohB6cQWtwJysNyLAJT0VocVWY80lwWbIXfh9WT4-XD4,1551
|
331
332
|
classiq/interface/generator/validations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -348,7 +349,7 @@ classiq/interface/helpers/versioned_model.py,sha256=kBgEghNdSidohb0-p_EjRFZLs7LA
|
|
348
349
|
classiq/interface/ide/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
349
350
|
classiq/interface/ide/ide_data.py,sha256=TtFsBttR7L34DeRx4NaswpdyMqEyAuguEWSvGXfZtZs,2504
|
350
351
|
classiq/interface/ide/visual_model.py,sha256=IFJxI3ewvq4O6vPPSNcjawxmuxX4yT-j-BH-z6woK9w,3255
|
351
|
-
classiq/interface/interface_version.py,sha256=
|
352
|
+
classiq/interface/interface_version.py,sha256=lBpLFw3ys90LKdm2IYZl_B1jy_IA3TN0h5YXy97aamQ,24
|
352
353
|
classiq/interface/jobs.py,sha256=i8hrBR2qtptCbxNI-PVYZedH_EDehOe2i09JbJUlD1g,2339
|
353
354
|
classiq/interface/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
354
355
|
classiq/interface/model/allocate.py,sha256=B3m-9wUU8SCgZUhKbxAcPLnKHFnT5zn0aKtIjLSqqiM,557
|
@@ -373,7 +374,7 @@ classiq/interface/model/quantum_expressions/quantum_expression.py,sha256=f_QrCf1
|
|
373
374
|
classiq/interface/model/quantum_function_call.py,sha256=Of6r8UeJAOJfHCCClicTeBIW950-UtNCbK7MZ0ISVF8,7063
|
374
375
|
classiq/interface/model/quantum_function_declaration.py,sha256=Op9ICNTvwCSQNx1Vr3HE9b8AkVkjwxNLccPZoWKxziQ,8337
|
375
376
|
classiq/interface/model/quantum_lambda_function.py,sha256=cATqykbArV6c9qmSNtqRgDQjjvCfRvYeC3-S5gJW-wg,1930
|
376
|
-
classiq/interface/model/quantum_statement.py,sha256=
|
377
|
+
classiq/interface/model/quantum_statement.py,sha256=9o8l2h5dXkiyYZy8Ws5mcmlACFE52P1S2BzbHWWmiNw,3204
|
377
378
|
classiq/interface/model/quantum_type.py,sha256=14em6BU4QzknydM1vMiFdJPXyYZSmUvncyz5LxIYGvk,9426
|
378
379
|
classiq/interface/model/quantum_variable_declaration.py,sha256=Vmx-aHnss8E_ghqX_wi4Njp-dEtYK-WwYHtHAwmGZxk,229
|
379
380
|
classiq/interface/model/repeat.py,sha256=Ex9K1YJjXydZTRUBCI_tkSHmrH1RXI4FdmfiGlxk-vA,598
|
@@ -391,39 +392,39 @@ classiq/interface/server/global_versions.py,sha256=EyUtBCoGHjgS4jybiHI8wOZq3WOqv
|
|
391
392
|
classiq/interface/server/routes.py,sha256=bhOGiXrwMLwvPEbesNuRKaUOyTbuQfqAMYitQIhybTc,3703
|
392
393
|
classiq/interface/source_reference.py,sha256=a-4Vdc511ux-0lDPDTRGAzouRWWtu4A3MPAfiZe_YPE,1764
|
393
394
|
classiq/model_expansions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
394
|
-
classiq/model_expansions/atomic_expression_functions_defs.py,sha256=
|
395
|
+
classiq/model_expansions/atomic_expression_functions_defs.py,sha256=Ueay6sahEoRpIo8tbVDkk4PZWANC_28BCDgXmPemSx0,8603
|
395
396
|
classiq/model_expansions/capturing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
396
|
-
classiq/model_expansions/capturing/captured_vars.py,sha256=
|
397
|
+
classiq/model_expansions/capturing/captured_vars.py,sha256=vnvsA3wTN-PsDlK3Lg2xwSFg4sNBUdkQ7-7luXvs608,21487
|
397
398
|
classiq/model_expansions/capturing/mangling_utils.py,sha256=wfCsjP0pScZv9YP6JXq3oVhkS-lCFyUoZ9IROBHS3Ek,1858
|
398
|
-
classiq/model_expansions/closure.py,sha256=
|
399
|
+
classiq/model_expansions/closure.py,sha256=VBpUVUDcIoJkYiOb2-hyHKK0FviKJHz7kh7cnXI99Zk,5287
|
399
400
|
classiq/model_expansions/debug_flag.py,sha256=JWzl9FFq2CLcvTg_sh-K8Dp_xXvewsTuFKhPjTCrsrs,107
|
400
401
|
classiq/model_expansions/evaluators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
401
402
|
classiq/model_expansions/evaluators/arg_type_match.py,sha256=7sZggt0cUNYqBGfVCExJl2GpxdMybbnVlJLjIs4EQPI,6108
|
402
403
|
classiq/model_expansions/evaluators/argument_types.py,sha256=5KBtDgr_cOaJg9pAfme66P2hKLe9TT_bw39ipYtAumM,1424
|
403
404
|
classiq/model_expansions/evaluators/classical_expression.py,sha256=OM-lPEX9-5IW6DEVZ3GMkSZDqsVDV7WRLItOUaTOvgw,1403
|
404
|
-
classiq/model_expansions/evaluators/control.py,sha256=
|
405
|
+
classiq/model_expansions/evaluators/control.py,sha256=daF1Npe6hsOQPBohbW9qoN1wQi92EdkdkaKtm6r_LXA,4094
|
405
406
|
classiq/model_expansions/evaluators/parameter_types.py,sha256=XCK8dKMemY6ptK3UqOdRqRA_9LsorqiX1-HUoMWc1NQ,7905
|
406
407
|
classiq/model_expansions/evaluators/quantum_type_utils.py,sha256=MuBVBKouXOUC5AiEnCSAo_KRaT3thV2qY5D4joqj7eU,9493
|
407
408
|
classiq/model_expansions/evaluators/type_type_match.py,sha256=3akZR86TAFKUyM5c5knCPSlraI3LQeWZXxXMTtmu0BI,3220
|
408
409
|
classiq/model_expansions/expression_evaluator.py,sha256=ed4gh4AfMT_SBR6sJ5EXd7mWsDR05VU5Tix7vJWaNqE,5061
|
409
|
-
classiq/model_expansions/function_builder.py,sha256=
|
410
|
-
classiq/model_expansions/generative_functions.py,sha256=
|
410
|
+
classiq/model_expansions/function_builder.py,sha256=WsBmkvb-3wGLGY1J62dKGVgD6yqJWchEAn60RE4FiBo,8939
|
411
|
+
classiq/model_expansions/generative_functions.py,sha256=_Vi3qPuC3xVacObu1YG_J-WiXjhzAy2GOmH8CBCAC40,6093
|
411
412
|
classiq/model_expansions/interpreters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
412
|
-
classiq/model_expansions/interpreters/base_interpreter.py,sha256=
|
413
|
+
classiq/model_expansions/interpreters/base_interpreter.py,sha256=dMRyiwoOtWhsnMFxvIN40HJ9-4OJl90n33awKfse1tM,11491
|
413
414
|
classiq/model_expansions/interpreters/frontend_generative_interpreter.py,sha256=db1BKh-MDWqLTK8WCXpbNYxxQM4mjqWIhwFtDil7Vd0,3768
|
414
|
-
classiq/model_expansions/interpreters/generative_interpreter.py,sha256=
|
415
|
+
classiq/model_expansions/interpreters/generative_interpreter.py,sha256=dVmn6HF3rWs9EhMbTN1l0_lJ3j__-JJsgay6uiSXMtg,9419
|
415
416
|
classiq/model_expansions/model_tables.py,sha256=dlrOGRS2x4Fd_dzClIcV7V8edmbbQzePv9eqxtJQrpo,620
|
416
417
|
classiq/model_expansions/quantum_operations/__init__.py,sha256=2Z8m4wz9Rfrw5s2izHbZFhAoaJ5U-ohbGE3x8t4e63c,473
|
417
|
-
classiq/model_expansions/quantum_operations/allocate.py,sha256=
|
418
|
-
classiq/model_expansions/quantum_operations/bind.py,sha256=
|
419
|
-
classiq/model_expansions/quantum_operations/call_emitter.py,sha256=
|
420
|
-
classiq/model_expansions/quantum_operations/classicalif.py,sha256
|
418
|
+
classiq/model_expansions/quantum_operations/allocate.py,sha256=0fazqUM1CoHAkh-qpFddpSWNpk6PWDDRDxhYeHwqeoA,2975
|
419
|
+
classiq/model_expansions/quantum_operations/bind.py,sha256=b7SCRunsBq4z3tkCcfxKQ-oFKCMxifJlTtr9y62EjqA,4537
|
420
|
+
classiq/model_expansions/quantum_operations/call_emitter.py,sha256=ZP-fMggBa7wguh6C-nxoezDh4X8UaJHrXOszRMqbkH8,13562
|
421
|
+
classiq/model_expansions/quantum_operations/classicalif.py,sha256=-vysjguhtZbci8VmghhuoBGZmEqTpYjqF_iZlJTHX4w,2291
|
421
422
|
classiq/model_expansions/quantum_operations/declarative_call_emitter.py,sha256=BlcjV0AG05qpKyWFD2-GJQKqTDWcFfRl7y1z3yIpllc,3209
|
422
|
-
classiq/model_expansions/quantum_operations/emitter.py,sha256=
|
423
|
+
classiq/model_expansions/quantum_operations/emitter.py,sha256=23KS02bO9uMmTzWjyUBNmPj0wfL9cENbjOGsnJBL67U,6649
|
423
424
|
classiq/model_expansions/quantum_operations/quantum_function_call.py,sha256=BN5K0h3FDR41kohOXyilp7bn0T5SHwnMDCpPmtAZQbY,2339
|
424
|
-
classiq/model_expansions/quantum_operations/repeat.py,sha256=
|
425
|
-
classiq/model_expansions/quantum_operations/shallow_emitter.py,sha256=
|
426
|
-
classiq/model_expansions/quantum_operations/variable_decleration.py,sha256=
|
425
|
+
classiq/model_expansions/quantum_operations/repeat.py,sha256=mXQOp90_0rg8iMIZ_mJTO7XXQP9sRWPaqC4jv3x-91U,2513
|
426
|
+
classiq/model_expansions/quantum_operations/shallow_emitter.py,sha256=7gGrJyOInnDdsj-utFNWNfQ1XKQHNYjGgPiNJt-v6EA,6753
|
427
|
+
classiq/model_expansions/quantum_operations/variable_decleration.py,sha256=rtr3SgbdPzHnNgC_D6s4uV2EJ7c3lWtrkKTp3ZaxOI0,1652
|
427
428
|
classiq/model_expansions/scope.py,sha256=HkgtLjFvs1dEWOi-W8qHDQfzMR-Oyhowa1QiOy7O-8I,7992
|
428
429
|
classiq/model_expansions/scope_initialization.py,sha256=IdQaV0MrQXUOiDX1rI61w4M5iwWwI0WZDZqcFpPBwhg,6346
|
429
430
|
classiq/model_expansions/sympy_conversion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -442,10 +443,10 @@ classiq/model_expansions/visitors/boolean_expression_transformers.py,sha256=a8IT
|
|
442
443
|
classiq/model_expansions/visitors/variable_references.py,sha256=s8QXXTmNTHAx8pF-PB4w4kdD6Fy0_b5rbbfeb_O8AoI,5114
|
443
444
|
classiq/open_library/__init__.py,sha256=bmg_qqXCXo85hcU7_QCce-qYGrpAVSFNwTKCClsclrg,114
|
444
445
|
classiq/open_library/functions/__init__.py,sha256=SfrTkuDTrsM3rlICLvQFqESDHUpEkq_EFCmQ3YlIH0Y,3235
|
445
|
-
classiq/open_library/functions/amplitude_amplification.py,sha256=
|
446
|
+
classiq/open_library/functions/amplitude_amplification.py,sha256=3_It6dhoazz12HVpZS5WdRguwNnJ_gaAhuBYzCZmsx8,4352
|
446
447
|
classiq/open_library/functions/amplitude_estimation.py,sha256=iCkca5SQN_HQoJWk1_tLT56fHT72hu5QIt2pxSZQRko,1766
|
447
448
|
classiq/open_library/functions/discrete_sine_cosine_transform.py,sha256=Gc9lsp8v2bRZlUc0PoLhKnCso7XASP10i2TKiOisH4Q,4476
|
448
|
-
classiq/open_library/functions/grover.py,sha256=
|
449
|
+
classiq/open_library/functions/grover.py,sha256=FWCzk0h2KLqu0qKqtCbSSaB7GlXrZ1d_Etwm7sfL0C8,4541
|
449
450
|
classiq/open_library/functions/hea.py,sha256=D3bRetHb74SIyd4FMCJcS2-dYPZuQQ2RLVDC0P6Yd5E,4984
|
450
451
|
classiq/open_library/functions/linear_pauli_rotation.py,sha256=5I6OmTyQY1xD6yDH6DY2zKJ8jxAn3YwbINi5uBLk-uc,2659
|
451
452
|
classiq/open_library/functions/modular_exponentiation.py,sha256=J_HAsbnYyB5dOzyRkwPO-sUkQp7l5NizQ_kVFLO0MM0,6613
|
@@ -464,13 +465,14 @@ classiq/qmod/builtins/classical_execution_primitives.py,sha256=Qlh1w6C8EChgX2iDn
|
|
464
465
|
classiq/qmod/builtins/classical_functions.py,sha256=gGRkklq2Lzt0uyRq2eXQ551BG32zBGEyY3lRQT63Bkg,1915
|
465
466
|
classiq/qmod/builtins/constants.py,sha256=FURSVt0dlIAw_xkGMyj89z4eub7vUdvUrPzaLTGUQxk,222
|
466
467
|
classiq/qmod/builtins/enums.py,sha256=JzfANJT4Z1Gy8io4JjCnez4t97mxBjT1K-ij2Cli9kQ,3417
|
467
|
-
classiq/qmod/builtins/functions/__init__.py,sha256=
|
468
|
+
classiq/qmod/builtins/functions/__init__.py,sha256=ByXIAnbrXJKyZ_O_3NtzjOMWHluPVaRDLlWOWsklsbA,2627
|
468
469
|
classiq/qmod/builtins/functions/allocation.py,sha256=rdhL3sBbaX_-esd9N7uF9d2QmrjfJR2ARK_5bUqDMm8,6002
|
469
470
|
classiq/qmod/builtins/functions/arithmetic.py,sha256=EBi7mT1rXjGW8uf7yBfrdqURM480Tvrwvyn7wzsTWmU,1290
|
470
471
|
classiq/qmod/builtins/functions/benchmarking.py,sha256=TYY1VRd5DHl-mKTKeW5wF1txZgFsb3yPXM_rdgoLWCo,250
|
471
472
|
classiq/qmod/builtins/functions/chemistry.py,sha256=Wl8ktlY0U_M-mDXozcCht44_flZtwImIiGeAMr7hs4s,2126
|
472
473
|
classiq/qmod/builtins/functions/exponentiation.py,sha256=FFd-yM37Bk36BchjbflC6l_1n4YPFxHv_lSyLR5hsn4,4095
|
473
474
|
classiq/qmod/builtins/functions/finance.py,sha256=zo-UZ_R_8UMw0FCLJQsw_CEMAKV4derY00tnbAPC2yw,861
|
475
|
+
classiq/qmod/builtins/functions/mid_circuit_measurement.py,sha256=9Xz-VxR07K5LS4qaw7u5MT39o7_zIEYRsRp0lArC0Zg,330
|
474
476
|
classiq/qmod/builtins/functions/operators.py,sha256=3IWFjUFhljY5CEe2ZU9Z8m33FzwM9E80IADcDcxVuNI,270
|
475
477
|
classiq/qmod/builtins/functions/qsvm.py,sha256=j5UbMWfl2UNtBewjSWgXq-fvHuAznpINw_b5-_XEKdU,586
|
476
478
|
classiq/qmod/builtins/functions/standard_gates.py,sha256=CRhNH7cUtRqGOknpfjT_v8B2wx00sOxgRXfayI3AMWc,15679
|
@@ -497,19 +499,18 @@ classiq/qmod/qmod_parameter.py,sha256=PpK4rzY0Hszgbzr_lclROcZ7JPqnhDJBYsSQkUjkcs
|
|
497
499
|
classiq/qmod/qmod_variable.py,sha256=UJqlPiHKTpi8GtcfnuWFS0QQ7NmB4AyKBeFoB8L9VZM,24017
|
498
500
|
classiq/qmod/quantum_callable.py,sha256=sthlH5UJyJsdOxpCW3_EW3JFIYd0r1K3Zec1CDbC2-0,2451
|
499
501
|
classiq/qmod/quantum_expandable.py,sha256=qs35-qMGm_J92Pnem_Juw18Wv3DZQWlqy6-_kuWeMLA,17020
|
500
|
-
classiq/qmod/quantum_function.py,sha256=
|
502
|
+
classiq/qmod/quantum_function.py,sha256=q3MMV0gWLtAy7b-Xv80dlQnjkkiy5V_e1RyJx0bImfg,12827
|
501
503
|
classiq/qmod/semantics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
502
504
|
classiq/qmod/semantics/annotation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
503
|
-
classiq/qmod/semantics/annotation/call_annotation.py,sha256=
|
505
|
+
classiq/qmod/semantics/annotation/call_annotation.py,sha256=hxnBRVu1WW3-k4oI7rPhuaEwhzp4IqxXprtuui72gWU,4886
|
506
|
+
classiq/qmod/semantics/annotation/model_annotation.py,sha256=gzsX3RrcaTPYBxxplbXaE3pBlQQvVkLGrK-xewzdVMA,329
|
504
507
|
classiq/qmod/semantics/annotation/qstruct_annotator.py,sha256=jE32WWiPZbahNQFiTdYiXuz5whgSxOO2g0o3mxZgHSk,869
|
505
|
-
classiq/qmod/semantics/error_manager.py,sha256=
|
508
|
+
classiq/qmod/semantics/error_manager.py,sha256=9m4ewug3nJseRdrOpaYFJeHbj4rMc5AFUmAIb3WKaHI,3036
|
506
509
|
classiq/qmod/semantics/lambdas.py,sha256=2Mpq6zkSZJMB8oz_idU4TPCns0cNRi7t3B7T_YmJiH0,1166
|
507
|
-
classiq/qmod/semantics/static_semantics_visitor.py,sha256=
|
510
|
+
classiq/qmod/semantics/static_semantics_visitor.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
508
511
|
classiq/qmod/semantics/validation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
509
512
|
classiq/qmod/semantics/validation/constants_validation.py,sha256=hD3i5tcqB6cQSVMkVx28LvfZWAg3rjerYd6eYlxUhZI,596
|
510
|
-
classiq/qmod/semantics/validation/func_call_validation.py,sha256=cY4N1UEAUyE0rcTqsjRu87FX5Rx3p5WMhU_-u-OfoXU,4058
|
511
513
|
classiq/qmod/semantics/validation/function_name_collisions_validation.py,sha256=tj5TRUlXkxBWlMC3DNiIjf4s98LGXWovMygco5KVHA4,694
|
512
|
-
classiq/qmod/semantics/validation/handle_validation.py,sha256=ZWfW41AigrFJDiTY3hevh0MYix_hkZGRcoPuUiKplSs,3034
|
513
514
|
classiq/qmod/semantics/validation/main_validation.py,sha256=K7QKjbP1pfNipf6bAiW3p3CAyAN7siN0fwS9hFRqcPk,1259
|
514
515
|
classiq/qmod/semantics/validation/model_validation.py,sha256=BMeleBpQ7WkEi2LNh4jPfFCSnjK4ohcb4LSEwj2hJOk,881
|
515
516
|
classiq/qmod/semantics/validation/signature_validation.py,sha256=WZerCfEwgbCPmXD34iHhXGVATMhJ86sg-dfdOHFZNGg,922
|
@@ -521,6 +522,6 @@ classiq/qmod/type_attribute_remover.py,sha256=NZmTXAsngWqthXjE8n-n6yE72fiWTFM12-
|
|
521
522
|
classiq/qmod/utilities.py,sha256=O39RtmkiCtpvhCk76WvRm0jMDraEYDQAiPTGcnvqfmI,3738
|
522
523
|
classiq/qmod/write_qmod.py,sha256=Oo-j_rSfcmzC5MOn0Vq334vv_OTvdD4P7K9pv-gbo8c,1833
|
523
524
|
classiq/synthesis.py,sha256=WLk3wpX_xPiAMstF9PGMO5SWVb_qqa1sN2Nj3MekX34,8113
|
524
|
-
classiq-0.
|
525
|
-
classiq-0.
|
526
|
-
classiq-0.
|
525
|
+
classiq-0.67.0.dist-info/METADATA,sha256=T7RqM59p4ss3UyoEUoO7OXIPysqGLtGEdir5fBSCv2w,3497
|
526
|
+
classiq-0.67.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
527
|
+
classiq-0.67.0.dist-info/RECORD,,
|