cirq-core 1.7.0.dev20250824133647__py3-none-any.whl → 1.7.0.dev20250824200454__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 +7 -5
- {cirq_core-1.7.0.dev20250824133647.dist-info → cirq_core-1.7.0.dev20250824200454.dist-info}/METADATA +1 -1
- {cirq_core-1.7.0.dev20250824133647.dist-info → cirq_core-1.7.0.dev20250824200454.dist-info}/RECORD +8 -8
- {cirq_core-1.7.0.dev20250824133647.dist-info → cirq_core-1.7.0.dev20250824200454.dist-info}/WHEEL +0 -0
- {cirq_core-1.7.0.dev20250824133647.dist-info → cirq_core-1.7.0.dev20250824200454.dist-info}/licenses/LICENSE +0 -0
- {cirq_core-1.7.0.dev20250824133647.dist-info → cirq_core-1.7.0.dev20250824200454.dist-info}/top_level.txt +0 -0
cirq/_version.py
CHANGED
cirq/_version_test.py
CHANGED
cirq/study/sweeps.py
CHANGED
|
@@ -33,11 +33,13 @@ ProductOrZipSweepLike = dict['cirq.TParamKey', Union['cirq.TParamVal', Sequence[
|
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
def _check_duplicate_keys(sweeps):
|
|
36
|
-
keys = set()
|
|
37
|
-
for sweep in sweeps
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
36
|
+
keys = set(itertools.chain.from_iterable(sweep.keys for sweep in sweeps))
|
|
37
|
+
key_count = sum(len(sweep.keys) for sweep in sweeps)
|
|
38
|
+
# If the total length of the sweep keys
|
|
39
|
+
# is not the same as the size of the set,
|
|
40
|
+
# then there is a duplicate key.
|
|
41
|
+
if key_count != len(keys):
|
|
42
|
+
raise ValueError('duplicate keys')
|
|
41
43
|
|
|
42
44
|
|
|
43
45
|
class Sweep(metaclass=abc.ABCMeta):
|
{cirq_core-1.7.0.dev20250824133647.dist-info → cirq_core-1.7.0.dev20250824200454.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cirq-core
|
|
3
|
-
Version: 1.7.0.
|
|
3
|
+
Version: 1.7.0.dev20250824200454
|
|
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.7.0.dev20250824133647.dist-info → cirq_core-1.7.0.dev20250824200454.dist-info}/RECORD
RENAMED
|
@@ -4,8 +4,8 @@ cirq/_compat_test.py,sha256=emXpdD5ZvwLRlFAoQB8YatmZyU3b4e9jg6FppMTUhkU,33900
|
|
|
4
4
|
cirq/_doc.py,sha256=BrnoABo1hk5RgB3Cgww4zLHUfiyFny0F1V-tOMCbdaU,2909
|
|
5
5
|
cirq/_import.py,sha256=ixBu4EyGl46Ram2cP3p5eZVEFDW5L2DS-VyTjz4N9iw,8429
|
|
6
6
|
cirq/_import_test.py,sha256=oF4izzOVZLc7NZ0aZHFcGv-r01eiFFt_JORx_x7_D4s,1089
|
|
7
|
-
cirq/_version.py,sha256=
|
|
8
|
-
cirq/_version_test.py,sha256=
|
|
7
|
+
cirq/_version.py,sha256=bHMW6O934V4_oHnqf9qAPMjgAiM-Uuvt_oIxTGv0TzY,1206
|
|
8
|
+
cirq/_version_test.py,sha256=K2E-4x0afwrLJNyD4mdh-YByGwtPRkI8xBoHUnSm8s8,155
|
|
9
9
|
cirq/conftest.py,sha256=wSDKNdIQRDfLnXvOCWD3erheOw8JHRhdfQ53EyTUIXg,1239
|
|
10
10
|
cirq/json_resolver_cache.py,sha256=A5DIgFAY1hUNt9vai_C3-gGBv24116CJMzQxMcXOax4,13726
|
|
11
11
|
cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
|
|
@@ -983,7 +983,7 @@ cirq/study/result.py,sha256=ci9Pg9IW4OMR4aZ4SaQ7TPVTgoSU-1WarjKEXBv2F2g,19214
|
|
|
983
983
|
cirq/study/result_test.py,sha256=Safhg93E1x7NA--bxvkMwOnTPAlT0VkfF6hdsEKvhEM,15627
|
|
984
984
|
cirq/study/sweepable.py,sha256=UlpkVE9oLOgdpz0WHpQMq1ZRVbsM3r_CGM6okYr165I,4308
|
|
985
985
|
cirq/study/sweepable_test.py,sha256=gMKkCoy8JxaCDeMTiDLdmcbBrioWs-teYOnqrri_2rI,5539
|
|
986
|
-
cirq/study/sweeps.py,sha256=
|
|
986
|
+
cirq/study/sweeps.py,sha256=vGNedvDb_qypXtmz-fdtFO2aePMlvLhLj_rHzE4as2k,21567
|
|
987
987
|
cirq/study/sweeps_test.py,sha256=fiOKKnDyD-Ju7xeQM7A9pKkfR58VHXKdc0qw9d0MwRA,17231
|
|
988
988
|
cirq/testing/__init__.py,sha256=QNkOC_QdYkiNrIxYuNjPsB_iWmTW8zUrUwOSiz_8LPg,6171
|
|
989
989
|
cirq/testing/circuit_compare.py,sha256=vWgMVa-TVwTRUMyEvNV6Ah3CMRlZYVo1xn41MsCTHzo,18766
|
|
@@ -1234,8 +1234,8 @@ cirq/work/sampler.py,sha256=rxbMWvrhu3gfNSBjZKozw28lLKVvBAS_1EGyPdYe8Xg,19041
|
|
|
1234
1234
|
cirq/work/sampler_test.py,sha256=SsMrRvLDYELyOAWLKISjkdEfrBwLYWRsT6D8WrsLM3Q,13533
|
|
1235
1235
|
cirq/work/zeros_sampler.py,sha256=Fs2JWwq0n9zv7_G5Rm-9vPeHUag7uctcMOHg0JTkZpc,2371
|
|
1236
1236
|
cirq/work/zeros_sampler_test.py,sha256=lQLgQDGBLtfImryys2HzQ2jOSGxHgc7-koVBUhv8qYk,3345
|
|
1237
|
-
cirq_core-1.7.0.
|
|
1238
|
-
cirq_core-1.7.0.
|
|
1239
|
-
cirq_core-1.7.0.
|
|
1240
|
-
cirq_core-1.7.0.
|
|
1241
|
-
cirq_core-1.7.0.
|
|
1237
|
+
cirq_core-1.7.0.dev20250824200454.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
1238
|
+
cirq_core-1.7.0.dev20250824200454.dist-info/METADATA,sha256=jdcllNVcO0GMJmNM9l9lBQrjyLpMdb2LaCTMxplz2lU,4819
|
|
1239
|
+
cirq_core-1.7.0.dev20250824200454.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1240
|
+
cirq_core-1.7.0.dev20250824200454.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
|
|
1241
|
+
cirq_core-1.7.0.dev20250824200454.dist-info/RECORD,,
|
{cirq_core-1.7.0.dev20250824133647.dist-info → cirq_core-1.7.0.dev20250824200454.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|