iqm-pulla 11.14.1__py3-none-any.whl → 11.16.2__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.
iqm/cpc/compiler/dd.py CHANGED
@@ -19,7 +19,11 @@ import math
19
19
 
20
20
  from iqm.cpc.compiler.errors import ClientError
21
21
  from iqm.cpc.interface.compiler import DDStrategy, PRXSequence
22
- from iqm.pulla.utils import InstructionLocation, locate_instructions, replace_instruction_in_place
22
+ from iqm.pulla.utils import (
23
+ InstructionLocation,
24
+ locate_instructions,
25
+ replace_instruction_in_place,
26
+ )
23
27
  from iqm.pulse.builder import ScheduleBuilder
24
28
  from iqm.pulse.gate_implementation import GateImplementation
25
29
  from iqm.pulse.playlist.instructions import Instruction, Wait
@@ -193,10 +197,11 @@ def _find_wait_instructions_on_channels(
193
197
 
194
198
  for wait in all_waits:
195
199
  # Check if leading and/or trailing instruction should be excluded
196
- if skip_leading_wait and wait.index == 0:
200
+ if skip_leading_wait and wait.index == 1:
197
201
  continue
198
- last_index = len(schedule[wait.channel_name]) - 1
199
- if skip_trailing_wait and wait.index == last_index:
202
+ if skip_trailing_wait and wait.index == len(schedule[wait.channel_name]) - 3: # third last index
203
+ continue
204
+ if skip_trailing_wait and wait.index == len(schedule[wait.channel_name]) - 1: # last index
200
205
  continue
201
206
  filtered_waits.append(wait)
202
207
 
@@ -490,7 +495,7 @@ def insert_dd_sequences(
490
495
  dd_sequences: list[tuple[int, PRXSequence, str]] = [
491
496
  (
492
497
  ratio,
493
- _gate_pattern_to_prx_sequence(pattern) if isinstance(pattern, str) else pattern,
498
+ (_gate_pattern_to_prx_sequence(pattern) if isinstance(pattern, str) else pattern),
494
499
  alignment,
495
500
  )
496
501
  for ratio, pattern, alignment in dd_sequences_sorted
@@ -176,6 +176,17 @@ _per_qubit = (
176
176
  "controllers.{}.drive.awg.center_frequency",
177
177
  required=False,
178
178
  ), # ZI SHFSG
179
+ Map(
180
+ Parameter("", "Local oscillator power for drive mixer", "dBm"),
181
+ "controllers.{}.drive.local_oscillator.power",
182
+ required=False,
183
+ ), # ZI HDAWG
184
+ # NOTE: For SHFSG, the unit of the output_range setting is in fact "dBm"
185
+ Map(
186
+ Parameter("", "Drive AWG output range", "V"),
187
+ "controllers.{}.drive.awg.output_range",
188
+ required=False,
189
+ ), # HDAWG, SHFSG
179
190
  Map(Parameter("", "Trigger delay for drive AWG", "s"), "controllers.{}.drive.awg.trigger_delay", required=False),
180
191
  )
181
192
 
@@ -191,6 +202,11 @@ _per_flux_pulsed_qubit = {
191
202
  "controllers.{}.flux.awg.precompensation.amplitudes",
192
203
  required=False,
193
204
  ),
205
+ Map(
206
+ Parameter("", "Flux AWG output range", "V"),
207
+ "controllers.{}.flux.awg.output_range",
208
+ required=False,
209
+ ), # HDAWG, Oceanus
194
210
  Map(Parameter("", "Trigger delay for flux AWG", "s"), "controllers.{}.flux.awg.trigger_delay", required=False),
195
211
  }
196
212
 
@@ -207,6 +223,11 @@ _per_coupler = (
207
223
  "controllers.{}.flux.awg.precompensation.amplitudes",
208
224
  required=False,
209
225
  ),
226
+ Map(
227
+ Parameter("", "Flux AWG output range", "V"),
228
+ "controllers.{}.flux.awg.output_range",
229
+ required=False,
230
+ ), # HDAWG, Oceanus
210
231
  Map(Parameter("", "Trigger delay for flux AWG", "s"), "controllers.{}.flux.awg.trigger_delay", required=False),
211
232
  )
212
233
 
@@ -218,12 +239,42 @@ _per_probe_line = (
218
239
  Map(Parameter("", "TWPA bias voltage_2", "V"), "controllers.{}.twpa.voltage_2", required=False),
219
240
  Map(Parameter("", "Frequency of the LO driving the TWPA", "Hz"), "controllers.{}.twpa.frequency", required=False),
220
241
  Map(Parameter("", "Power of the LO driving the TWPA", "dBm"), "controllers.{}.twpa.power", required=False),
242
+ Map(
243
+ Parameter("", "Local oscillator frequency for the readout", "Hz"),
244
+ "controllers.{}.readout.local_oscillator.frequency",
245
+ required=False,
246
+ ), # UHFQA
247
+ Map(
248
+ Parameter("", "Local oscillator power for the readout", "dBm"),
249
+ "controllers.{}.readout.local_oscillator.power",
250
+ required=False,
251
+ ), # UHFQA
221
252
  # Center frequency must be within the AWG IF bandwidth from every <qubit>.readout.frequency
222
253
  Map(
223
254
  Parameter("", "Probe line center frequency", "Hz"),
224
255
  "controllers.{}.readout.center_frequency",
225
256
  required=True,
226
257
  ),
258
+ Map(
259
+ Parameter("", "Readout output range", "dBm"),
260
+ "controllers.{}.readout.output_range",
261
+ required=False,
262
+ ), # UHFQA, SHFQA
263
+ Map(
264
+ Parameter("", "Readout input range", "dBm"),
265
+ "controllers.{}.readout.input_range",
266
+ required=False,
267
+ ), # UHFQA, SHFQA
268
+ Map(
269
+ Parameter("", "Readout attenuation out", "dB"),
270
+ "controllers.{}.readout.attenuation_out",
271
+ required=False,
272
+ ), # Athene
273
+ Map(
274
+ Parameter("", "Readout attenuation in", "dB"),
275
+ "controllers.{}.readout.attenuation_in",
276
+ required=False,
277
+ ), # Athene
227
278
  Map(
228
279
  Parameter("", "Trigger delay for readout instrument", "s"),
229
280
  "controllers.{}.readout.trigger_delay",
iqm/pulla/utils.py CHANGED
@@ -18,6 +18,7 @@ from collections import namedtuple
18
18
  from collections.abc import Hashable, Iterable, Iterator, Sequence, Set
19
19
  from dataclasses import replace
20
20
  from itertools import chain
21
+ import logging
21
22
  from typing import Any, TypeAlias
22
23
 
23
24
  import numpy as np
@@ -47,6 +48,8 @@ from iqm.pulse.timebox import TimeBox
47
48
  from iqm.station_control.client.qon import locus_str_to_locus
48
49
  from iqm.station_control.interface.models.observation import ObservationBase
49
50
 
51
+ logger = logging.getLogger(__name__)
52
+
50
53
  _CircuitMeasurementResultsNew: TypeAlias = dict[str, np.ndarray]
51
54
  """Measurement results from a single circuit/schedule. For each measurement operation in the circuit,
52
55
  maps the measurement key to an array of results, where the first dimension correspond to shots,
@@ -54,6 +57,10 @@ and the second dimension to the qubits measured in the measurement operation."""
54
57
  # TODO should replace CircuitMeasurementResults in the API
55
58
 
56
59
 
60
+ class PostSelectionError(Exception):
61
+ """Error in performing post selection via heralded results"""
62
+
63
+
57
64
  def circuit_operations_to_cpc(circ_ops: tuple[CircuitOperation], name: str | None = None) -> CPC_Circuit:
58
65
  """Convert a list of CircuitOperations to an IQM CPC Circuit.
59
66
 
@@ -174,11 +181,18 @@ def convert_sweep_spot_to_arrays(
174
181
  Converted measurement results for each circuit in the batch.
175
182
 
176
183
  """
184
+
185
+ def _fix_typing(arr: np.ndarray) -> np.ndarray:
186
+ """Cast thresholded (int) results into np.uint8"""
187
+ if np.iscomplex(arr).any():
188
+ return arr
189
+ return arr.astype(np.uint8)
190
+
177
191
  num_triggers_for_label, labels_for_circuit = _get_trigger_indexing_for(readout_mappings)
178
192
  first_key = next(iter(results))
179
193
  num_shots = len(results[first_key]) // num_triggers_for_label[first_key] # num shots equal for all labels
180
194
  results = {
181
- label: measurements.reshape((num_shots, num_triggers_for_label[label]))
195
+ label: _fix_typing(measurements.reshape((num_shots, num_triggers_for_label[label])))
182
196
  for label, measurements in results.items()
183
197
  }
184
198
  for circuit_idx, readout_mapping in enumerate(readout_mappings):
@@ -238,6 +252,9 @@ def convert_sweep_spot_to_arrays_with_heralding_mode_zero(
238
252
  the heralding measurement, , with the heralding measurement data removed.
239
253
 
240
254
  """
255
+ for data in results.values():
256
+ if np.iscomplex(data).any():
257
+ raise PostSelectionError("Complex readout results are not supported in post-selection.")
241
258
  num_triggers_for_label, labels_for_circuit = _get_trigger_indexing_for(readout_mappings)
242
259
  first_key = next(iter(results.keys()))
243
260
  num_shots = len(results[first_key]) // num_triggers_for_label[first_key] # num shots equal for all labels
@@ -298,14 +315,19 @@ def map_sweep_results_to_logical_qubits(
298
315
 
299
316
  # circuit execution uses just one soft sweep spot
300
317
  results = {k: v[0] for k, v in sweep_results.items()}
301
- if heralding_mode == HeraldingMode.NONE:
302
- circuit_results_iter = convert_sweep_spot_to_arrays(results, readout_mappings)
303
- else:
304
- circuit_results_iter = convert_sweep_spot_to_arrays_with_heralding_mode_zero(results, readout_mappings)
305
-
306
- # TODO 99% of the time in this function is spent in the tolist() converting the arrays to ints.
307
- # For large datasets, it is several seconds.
308
- # To rectify this, we should change CircuitMeasurementResultsBatch of the public API.
318
+ if heralding_mode != HeraldingMode.NONE:
319
+ try:
320
+ # TODO 99% of the time in this function is spent in the tolist() converting the arrays to ints.
321
+ # For large datasets, it is several seconds.
322
+ # To rectify this, we should change CircuitMeasurementResultsBatch of the public API.
323
+ circuit_results_iter = convert_sweep_spot_to_arrays_with_heralding_mode_zero(results, readout_mappings)
324
+ return [{mk: array.tolist() for mk, array in circuit_res.items()} for circuit_res in circuit_results_iter]
325
+ except PostSelectionError:
326
+ logger.warning(
327
+ "Cannot perform post-selection based on herald measurement results in complex readout mode. "
328
+ "Returning all results."
329
+ )
330
+ circuit_results_iter = convert_sweep_spot_to_arrays(results, readout_mappings)
309
331
  return [{mk: array.tolist() for mk, array in circuit_res.items()} for circuit_res in circuit_results_iter]
310
332
 
311
333
 
@@ -1,22 +1,22 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: iqm-pulla
3
- Version: 11.14.1
3
+ Version: 11.16.2
4
4
  Summary: Client library for pulse-level access to an IQM quantum computer
5
5
  Author-email: IQM Finland Oy <developers@meetiqm.com>
6
6
  License: Apache License
7
7
  Version 2.0, January 2004
8
8
  http://www.apache.org/licenses/
9
-
9
+
10
10
  TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
11
-
11
+
12
12
  1. Definitions.
13
-
13
+
14
14
  "License" shall mean the terms and conditions for use, reproduction,
15
15
  and distribution as defined by Sections 1 through 9 of this document.
16
-
16
+
17
17
  "Licensor" shall mean the copyright owner or entity authorized by
18
18
  the copyright owner that is granting the License.
19
-
19
+
20
20
  "Legal Entity" shall mean the union of the acting entity and all
21
21
  other entities that control, are controlled by, or are under common
22
22
  control with that entity. For the purposes of this definition,
@@ -24,24 +24,24 @@ License: Apache License
24
24
  direction or management of such entity, whether by contract or
25
25
  otherwise, or (ii) ownership of fifty percent (50%) or more of the
26
26
  outstanding shares, or (iii) beneficial ownership of such entity.
27
-
27
+
28
28
  "You" (or "Your") shall mean an individual or Legal Entity
29
29
  exercising permissions granted by this License.
30
-
30
+
31
31
  "Source" form shall mean the preferred form for making modifications,
32
32
  including but not limited to software source code, documentation
33
33
  source, and configuration files.
34
-
34
+
35
35
  "Object" form shall mean any form resulting from mechanical
36
36
  transformation or translation of a Source form, including but
37
37
  not limited to compiled object code, generated documentation,
38
38
  and conversions to other media types.
39
-
39
+
40
40
  "Work" shall mean the work of authorship, whether in Source or
41
41
  Object form, made available under the License, as indicated by a
42
42
  copyright notice that is included in or attached to the work
43
43
  (an example is provided in the Appendix below).
44
-
44
+
45
45
  "Derivative Works" shall mean any work, whether in Source or Object
46
46
  form, that is based on (or derived from) the Work and for which the
47
47
  editorial revisions, annotations, elaborations, or other modifications
@@ -49,7 +49,7 @@ License: Apache License
49
49
  of this License, Derivative Works shall not include works that remain
50
50
  separable from, or merely link (or bind by name) to the interfaces of,
51
51
  the Work and Derivative Works thereof.
52
-
52
+
53
53
  "Contribution" shall mean any work of authorship, including
54
54
  the original version of the Work and any modifications or additions
55
55
  to that Work or Derivative Works thereof, that is intentionally
@@ -63,18 +63,18 @@ License: Apache License
63
63
  Licensor for the purpose of discussing and improving the Work, but
64
64
  excluding communication that is conspicuously marked or otherwise
65
65
  designated in writing by the copyright owner as "Not a Contribution."
66
-
66
+
67
67
  "Contributor" shall mean Licensor and any individual or Legal Entity
68
68
  on behalf of whom a Contribution has been received by Licensor and
69
69
  subsequently incorporated within the Work.
70
-
70
+
71
71
  2. Grant of Copyright License. Subject to the terms and conditions of
72
72
  this License, each Contributor hereby grants to You a perpetual,
73
73
  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
74
74
  copyright license to reproduce, prepare Derivative Works of,
75
75
  publicly display, publicly perform, sublicense, and distribute the
76
76
  Work and such Derivative Works in Source or Object form.
77
-
77
+
78
78
  3. Grant of Patent License. Subject to the terms and conditions of
79
79
  this License, each Contributor hereby grants to You a perpetual,
80
80
  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
@@ -90,24 +90,24 @@ License: Apache License
90
90
  or contributory patent infringement, then any patent licenses
91
91
  granted to You under this License for that Work shall terminate
92
92
  as of the date such litigation is filed.
93
-
93
+
94
94
  4. Redistribution. You may reproduce and distribute copies of the
95
95
  Work or Derivative Works thereof in any medium, with or without
96
96
  modifications, and in Source or Object form, provided that You
97
97
  meet the following conditions:
98
-
98
+
99
99
  (a) You must give any other recipients of the Work or
100
100
  Derivative Works a copy of this License; and
101
-
101
+
102
102
  (b) You must cause any modified files to carry prominent notices
103
103
  stating that You changed the files; and
104
-
104
+
105
105
  (c) You must retain, in the Source form of any Derivative Works
106
106
  that You distribute, all copyright, patent, trademark, and
107
107
  attribution notices from the Source form of the Work,
108
108
  excluding those notices that do not pertain to any part of
109
109
  the Derivative Works; and
110
-
110
+
111
111
  (d) If the Work includes a "NOTICE" text file as part of its
112
112
  distribution, then any Derivative Works that You distribute must
113
113
  include a readable copy of the attribution notices contained
@@ -124,14 +124,14 @@ License: Apache License
124
124
  or as an addendum to the NOTICE text from the Work, provided
125
125
  that such additional attribution notices cannot be construed
126
126
  as modifying the License.
127
-
127
+
128
128
  You may add Your own copyright statement to Your modifications and
129
129
  may provide additional or different license terms and conditions
130
130
  for use, reproduction, or distribution of Your modifications, or
131
131
  for any such Derivative Works as a whole, provided Your use,
132
132
  reproduction, and distribution of the Work otherwise complies with
133
133
  the conditions stated in this License.
134
-
134
+
135
135
  5. Submission of Contributions. Unless You explicitly state otherwise,
136
136
  any Contribution intentionally submitted for inclusion in the Work
137
137
  by You to the Licensor shall be under the terms and conditions of
@@ -139,12 +139,12 @@ License: Apache License
139
139
  Notwithstanding the above, nothing herein shall supersede or modify
140
140
  the terms of any separate license agreement you may have executed
141
141
  with Licensor regarding such Contributions.
142
-
142
+
143
143
  6. Trademarks. This License does not grant permission to use the trade
144
144
  names, trademarks, service marks, or product names of the Licensor,
145
145
  except as required for reasonable and customary use in describing the
146
146
  origin of the Work and reproducing the content of the NOTICE file.
147
-
147
+
148
148
  7. Disclaimer of Warranty. Unless required by applicable law or
149
149
  agreed to in writing, Licensor provides the Work (and each
150
150
  Contributor provides its Contributions) on an "AS IS" BASIS,
@@ -154,7 +154,7 @@ License: Apache License
154
154
  PARTICULAR PURPOSE. You are solely responsible for determining the
155
155
  appropriateness of using or redistributing the Work and assume any
156
156
  risks associated with Your exercise of permissions under this License.
157
-
157
+
158
158
  8. Limitation of Liability. In no event and under no legal theory,
159
159
  whether in tort (including negligence), contract, or otherwise,
160
160
  unless required by applicable law (such as deliberate and grossly
@@ -166,7 +166,7 @@ License: Apache License
166
166
  work stoppage, computer failure or malfunction, or any and all
167
167
  other commercial damages or losses), even if such Contributor
168
168
  has been advised of the possibility of such damages.
169
-
169
+
170
170
  9. Accepting Warranty or Additional Liability. While redistributing
171
171
  the Work or Derivative Works thereof, You may choose to offer,
172
172
  and charge a fee for, acceptance of support, warranty, indemnity,
@@ -177,11 +177,11 @@ License: Apache License
177
177
  defend, and hold each Contributor harmless for any liability
178
178
  incurred by, or claims asserted against, such Contributor by reason
179
179
  of your accepting any such warranty or additional liability.
180
-
180
+
181
181
  END OF TERMS AND CONDITIONS
182
-
182
+
183
183
  APPENDIX: How to apply the Apache License to your work.
184
-
184
+
185
185
  To apply the Apache License to your work, attach the following
186
186
  boilerplate notice, with the fields enclosed by brackets "[]"
187
187
  replaced with your own identifying information. (Don't include
@@ -190,21 +190,21 @@ License: Apache License
190
190
  file or class name and description of purpose be included on the
191
191
  same "printed page" as the copyright notice for easier
192
192
  identification within third-party archives.
193
-
193
+
194
194
  Copyright 2025 IQM
195
-
195
+
196
196
  Licensed under the Apache License, Version 2.0 (the "License");
197
197
  you may not use this file except in compliance with the License.
198
198
  You may obtain a copy of the License at
199
-
199
+
200
200
  http://www.apache.org/licenses/LICENSE-2.0
201
-
201
+
202
202
  Unless required by applicable law or agreed to in writing, software
203
203
  distributed under the License is distributed on an "AS IS" BASIS,
204
204
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
205
205
  See the License for the specific language governing permissions and
206
206
  limitations under the License.
207
-
207
+
208
208
  Project-URL: Documentation, https://iqm-finland.github.io/docs/iqm-pulla/
209
209
  Project-URL: Homepage, https://pypi.org/project/iqm-pulla/
210
210
  Classifier: Development Status :: 4 - Beta
@@ -239,8 +239,8 @@ Provides-Extra: qiskit
239
239
  Requires-Dist: iqm-exa-common <28,>=27 ; extra == 'qiskit'
240
240
  Requires-Dist: iqm-station-control-client <12,>=11 ; extra == 'qiskit'
241
241
  Requires-Dist: iqm-pulse <13,>=12 ; extra == 'qiskit'
242
- Requires-Dist: iqm-client[qiskit] <33,>=32 ; extra == 'qiskit'
243
242
  Requires-Dist: iqm-client <33,>=32 ; extra == 'qiskit'
243
+ Requires-Dist: iqm-client[qiskit] <33,>=32 ; extra == 'qiskit'
244
244
 
245
245
  IQM Pulla
246
246
  #########
@@ -1,14 +1,11 @@
1
- .DS_Store,sha256=JTD1E_E-4_5-zyGGkIiQdxhnWEwJ8wOBf7tB-DglpU4,6148
2
- iqm_pulla-11.14.1-py3-none-any.whl,sha256=upckuS0jJNoqlNyP2_zQ1ziEg540l1ig1HPVc-0XU-s,542
3
- iqm/.DS_Store,sha256=mF7utOUe3tB57CEdODAuWMsUUKZNsQkhjrBn55A0bpk,6148
4
1
  iqm/cpc/__init__.py,sha256=mml8qMgjIQcfcfumrYu2lIfl30ZPSwaN3adn8CdRd3w,1079
5
2
  iqm/cpc/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
3
  iqm/cpc/compiler/__init__.py,sha256=ieYyHzb2IyevDm5swU--rPMsh5GdUtLrw8773Cd0ens,678
7
4
  iqm/cpc/compiler/compiler.py,sha256=NRmy_G4gECUWT1916iNLsI0NMAt2Nh5ZZXtiNzAw9R8,22398
8
- iqm/cpc/compiler/dd.py,sha256=j4onTod24RPxRwwsM3EMBBgX4hDO0k_nW9R762AocXo,21674
5
+ iqm/cpc/compiler/dd.py,sha256=Kf5fIZtLHT74oiVpF1vtVNN0mbrjc2KPwVJL0sSSMzE,21802
9
6
  iqm/cpc/compiler/errors.py,sha256=tz-8g1QtDvCAPmAjjCYK3FoULrazkpSTmXIvyqukaT4,1949
10
7
  iqm/cpc/compiler/standard_stages.py,sha256=wW_pvSwrth9PdTLeTunCKNhz33xPXxJ0f9K8918O1pw,34776
11
- iqm/cpc/compiler/station_settings.py,sha256=l4cJYcNtMar_BoChJaUbmVfpXv7liTCeLWpSv7fAipg,16903
8
+ iqm/cpc/compiler/station_settings.py,sha256=KUq_ZswTYE4AsS6LaKXRwlPbP0jsZ0j7pH2qQv0ifrc,18621
12
9
  iqm/cpc/interface/__init__.py,sha256=mvhNx1I9K5Sg40CwPntWj35M3Bni__23PWEw_qYaXtQ,611
13
10
  iqm/cpc/interface/compiler.py,sha256=zxUyalyiBIQA9EUK_fDGNq0SZ5OwfxQdB6Xk5BDDMVk,9797
14
11
  iqm/pulla/__init__.py,sha256=fj5Qh8R9K-z6q5g9-CySBZsG8d33nU7hCHrqIIB8_-0,901
@@ -17,14 +14,14 @@ iqm/pulla/interface.py,sha256=XZ_uOWyxlZBmil5-Z02R6rZ1dsR5t43xr6oL01DAows,3614
17
14
  iqm/pulla/pulla.py,sha256=kgcyoMe9a9VvD9Y7HLvFdaQaax8vJkP_OVRd7sftvjo,16166
18
15
  iqm/pulla/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
16
  iqm/pulla/quantum_architecture.py,sha256=jj9zqK9CcODedR69p8zLSj3qDfzIxI_f9rb8s07GKaM,6377
20
- iqm/pulla/utils.py,sha256=eKXEotu5xSyus4nCAc_rqPs1u3e5jdlEXxFKqrfBT_g,27720
17
+ iqm/pulla/utils.py,sha256=gRl_IbNk_Kom9iZryHX6CjxNRIlCppBl3-ot7_766Fw,28644
21
18
  iqm/pulla/utils_cirq.py,sha256=VtdO356D2RAh2lSVdaPm3ClJ9-nvC4jzhR9hP5QSQhI,793
22
19
  iqm/pulla/utils_dd.py,sha256=SxYAuRBgvYELKjeXpFbP4mM0xCCivDk7WUHw7oEXfMo,1695
23
20
  iqm/pulla/utils_qir.py,sha256=uNEiqBczv7rX8tAqcg7TX-si0P-ZdDcPTMOVfi5eb28,11567
24
21
  iqm/pulla/utils_qiskit.py,sha256=pbb2fEJAdxqd6hW9_Qgvpvy0P2H81zTJ1QLahe4Tx6U,9482
25
- iqm_pulla-11.14.1.dist-info/AUTHORS.rst,sha256=iCStz7WP5Jk7uMnn9jRA4ybS14X4yeUW2SsWE-OTaRk,328
26
- iqm_pulla-11.14.1.dist-info/LICENSE.txt,sha256=cCj_biRA4Q8A77vxR8AuvAf-DZ5G79yxR_3lYY6TrmA,11333
27
- iqm_pulla-11.14.1.dist-info/METADATA,sha256=LkKzcVCjyKS5IDOXvCzQX2gLVqWrIkn02dA2L2XvYWs,17437
28
- iqm_pulla-11.14.1.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
29
- iqm_pulla-11.14.1.dist-info/top_level.txt,sha256=NB4XRfyDS6_wG9gMsyX-9LTU7kWnTQxNvkbzIxGv3-c,4
30
- iqm_pulla-11.14.1.dist-info/RECORD,,
22
+ iqm_pulla-11.16.2.dist-info/AUTHORS.rst,sha256=iCStz7WP5Jk7uMnn9jRA4ybS14X4yeUW2SsWE-OTaRk,328
23
+ iqm_pulla-11.16.2.dist-info/LICENSE.txt,sha256=cCj_biRA4Q8A77vxR8AuvAf-DZ5G79yxR_3lYY6TrmA,11333
24
+ iqm_pulla-11.16.2.dist-info/METADATA,sha256=ND1mpT5jESt3Iwlf4YjgmWIdmskHOFN5O6DQluDZdnk,17701
25
+ iqm_pulla-11.16.2.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
26
+ iqm_pulla-11.16.2.dist-info/top_level.txt,sha256=NB4XRfyDS6_wG9gMsyX-9LTU7kWnTQxNvkbzIxGv3-c,4
27
+ iqm_pulla-11.16.2.dist-info/RECORD,,
.DS_Store DELETED
Binary file
iqm/.DS_Store DELETED
Binary file
Binary file