cirq-core 1.6.0.dev20250429173645__py3-none-any.whl → 1.6.0.dev20250429191011__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.
Potentially problematic release.
This version of cirq-core might be problematic. Click here for more details.
- cirq/_version.py +1 -1
- cirq/_version_test.py +1 -1
- cirq/study/sweeps.py +1 -1
- cirq/study/sweeps_test.py +5 -0
- {cirq_core-1.6.0.dev20250429173645.dist-info → cirq_core-1.6.0.dev20250429191011.dist-info}/METADATA +1 -1
- {cirq_core-1.6.0.dev20250429173645.dist-info → cirq_core-1.6.0.dev20250429191011.dist-info}/RECORD +9 -9
- {cirq_core-1.6.0.dev20250429173645.dist-info → cirq_core-1.6.0.dev20250429191011.dist-info}/WHEEL +0 -0
- {cirq_core-1.6.0.dev20250429173645.dist-info → cirq_core-1.6.0.dev20250429191011.dist-info}/licenses/LICENSE +0 -0
- {cirq_core-1.6.0.dev20250429173645.dist-info → cirq_core-1.6.0.dev20250429191011.dist-info}/top_level.txt +0 -0
cirq/_version.py
CHANGED
cirq/_version_test.py
CHANGED
cirq/study/sweeps.py
CHANGED
|
@@ -375,7 +375,7 @@ class Zip(Sweep):
|
|
|
375
375
|
def param_tuples(self) -> Iterator[Params]:
|
|
376
376
|
iters = [sweep.param_tuples() for sweep in self.sweeps]
|
|
377
377
|
for values in zip(*iters):
|
|
378
|
-
yield
|
|
378
|
+
yield tuple(itertools.chain.from_iterable(values))
|
|
379
379
|
|
|
380
380
|
def __repr__(self) -> str:
|
|
381
381
|
sweeps_repr = ', '.join(repr(s) for s in self.sweeps)
|
cirq/study/sweeps_test.py
CHANGED
|
@@ -76,6 +76,11 @@ def test_zip():
|
|
|
76
76
|
assert len(sweep) == 3
|
|
77
77
|
assert _values(sweep, 'a') == [1, 2, 3]
|
|
78
78
|
assert _values(sweep, 'b') == [4, 5, 6]
|
|
79
|
+
assert list(sweep.param_tuples()) == [
|
|
80
|
+
(('a', 1), ('b', 4)),
|
|
81
|
+
(('a', 2), ('b', 5)),
|
|
82
|
+
(('a', 3), ('b', 6)),
|
|
83
|
+
]
|
|
79
84
|
|
|
80
85
|
|
|
81
86
|
def test_zip_longest():
|
{cirq_core-1.6.0.dev20250429173645.dist-info → cirq_core-1.6.0.dev20250429191011.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cirq-core
|
|
3
|
-
Version: 1.6.0.
|
|
3
|
+
Version: 1.6.0.dev20250429191011
|
|
4
4
|
Summary: A framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.
|
|
5
5
|
Home-page: http://github.com/quantumlib/cirq
|
|
6
6
|
Author: The Cirq Developers
|
{cirq_core-1.6.0.dev20250429173645.dist-info → cirq_core-1.6.0.dev20250429191011.dist-info}/RECORD
RENAMED
|
@@ -4,8 +4,8 @@ cirq/_compat_test.py,sha256=0m3sYIyxRNv9jvAo6rzJ-cnbpny3KGnAByrbU7bApgQ,34720
|
|
|
4
4
|
cirq/_doc.py,sha256=yDyWUD_2JDS0gShfGRb-rdqRt9-WeL7DhkqX7np0Nko,2879
|
|
5
5
|
cirq/_import.py,sha256=cfocxtT1BJ4HkfZ-VO8YyIhPP-xfqHDkLrzz6eeO5U0,8421
|
|
6
6
|
cirq/_import_test.py,sha256=6K_v0riZJXOXUphHNkGA8MY-JcmGlezFaGmvrNhm3OQ,1015
|
|
7
|
-
cirq/_version.py,sha256=
|
|
8
|
-
cirq/_version_test.py,sha256=
|
|
7
|
+
cirq/_version.py,sha256=TINfUySl1gUeyWl8fEGWVsdGC2ARRZcs-ZB6Ns9laco,1206
|
|
8
|
+
cirq/_version_test.py,sha256=BfCGmD-7v6LZtj5i8FO9brNmbG_nWltgMgCO3vBEuf4,147
|
|
9
9
|
cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
|
|
10
10
|
cirq/json_resolver_cache.py,sha256=-4KqEEYb6aps-seafnFTHTp3SZc0D8mr4O-pCKIajn8,13653
|
|
11
11
|
cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
|
|
@@ -962,8 +962,8 @@ cirq/study/result.py,sha256=U4bsSZ0D78p4DJOkcpiJk-Ow0U4pi90Z-sPXSv6x0bI,19314
|
|
|
962
962
|
cirq/study/result_test.py,sha256=fq5BH78RswfTiYjMchJ4wEDDyaJu0QdJoGobMjKDeSI,15591
|
|
963
963
|
cirq/study/sweepable.py,sha256=TXry4R8jDqhbq_FXPFdLlF9vEHA0MQrmFbJd4K6PlPc,4358
|
|
964
964
|
cirq/study/sweepable_test.py,sha256=ENv03_GJmbUc_ukJoqfgG-H5C_yyx1jCcvxohSMyQVU,5502
|
|
965
|
-
cirq/study/sweeps.py,sha256=
|
|
966
|
-
cirq/study/sweeps_test.py,sha256=
|
|
965
|
+
cirq/study/sweeps.py,sha256=lZj9ITkaZCorXha-KfGzcou1PMPk_uDIepeztSC-1fk,21707
|
|
966
|
+
cirq/study/sweeps_test.py,sha256=wd8nkxKaCb8i5FqSanyGbcMMiyigpGaY3tqKeVoT-x8,16299
|
|
967
967
|
cirq/testing/__init__.py,sha256=m_HUdHcJ3HcKpGQBKCwZ6E6QSkKpIN-dUGr4e75o4tY,6217
|
|
968
968
|
cirq/testing/circuit_compare.py,sha256=7Y9agOcdxDnOvigN58OH9NNvlW-HGTGLjZaj0tRVep4,19175
|
|
969
969
|
cirq/testing/circuit_compare_test.py,sha256=yGf1ZqiYzvEj_mepbwHo230d3mwb_4N7K0E_Lhxms_Q,19702
|
|
@@ -1209,8 +1209,8 @@ cirq/work/sampler.py,sha256=sW0RhIelGABAKbqTM58shwyyCPgf86JIv9IGdJe__js,19186
|
|
|
1209
1209
|
cirq/work/sampler_test.py,sha256=mdk1J-WrvbPUYhY41VhWf9_te4DnXr_XMPcugWwc4-I,13281
|
|
1210
1210
|
cirq/work/zeros_sampler.py,sha256=8_Ne6dBkDANtTZuql7Eb0Qg_E_P3-_gu-ybFzxTbKAQ,2356
|
|
1211
1211
|
cirq/work/zeros_sampler_test.py,sha256=JIkpBBFPJe5Ba4142vzogyWyboG1Q1ZAm0UVGgOoZn8,3279
|
|
1212
|
-
cirq_core-1.6.0.
|
|
1213
|
-
cirq_core-1.6.0.
|
|
1214
|
-
cirq_core-1.6.0.
|
|
1215
|
-
cirq_core-1.6.0.
|
|
1216
|
-
cirq_core-1.6.0.
|
|
1212
|
+
cirq_core-1.6.0.dev20250429191011.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
1213
|
+
cirq_core-1.6.0.dev20250429191011.dist-info/METADATA,sha256=FZTJRIwZUdgryXgRKnqchr0jTt-WzpVwCeJmovkWeZA,4908
|
|
1214
|
+
cirq_core-1.6.0.dev20250429191011.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
|
|
1215
|
+
cirq_core-1.6.0.dev20250429191011.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
|
|
1216
|
+
cirq_core-1.6.0.dev20250429191011.dist-info/RECORD,,
|
{cirq_core-1.6.0.dev20250429173645.dist-info → cirq_core-1.6.0.dev20250429191011.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|