Skip to content

Commit 321786d

Browse files
Easy changes to difficult terminology (#6340)
Co-authored-by: Pavol Juhas <[email protected]>
1 parent e3fbd98 commit 321786d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

cirq-core/cirq/contrib/quimb/mps_simulator_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ def test_random_circuits_equal_more_rows():
335335
assert_same_output_as_dense(circuit, qubits)
336336

337337

338-
def test_supremacy_equal_more_cols():
338+
def test_random_circuits_equal_more_cols():
339339
circuit = cirq.testing.random_circuit(
340340
qubits=cirq.GridQubit.rect(2, 3), n_moments=6, op_density=1.0
341341
)

cirq-core/cirq/experiments/random_quantum_circuit_generation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def __repr__(self) -> str:
142142
143143
This pattern of gates was used in the paper
144144
https://www.nature.com/articles/s41586-019-1666-5
145-
to demonstrate quantum supremacy.
145+
to demonstrate beyond-classical computation.
146146
""",
147147
)
148148

cirq-core/cirq/protocols/json_serialization_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def test_not_yet_serializable_no_superfluous(mod_spec: ModuleJsonTestSpec):
237237

238238

239239
@pytest.mark.parametrize('mod_spec', MODULE_TEST_SPECS, ids=repr)
240-
def test_mutually_exclusive_lists(mod_spec: ModuleJsonTestSpec):
240+
def test_mutually_exclusive_not_serialize_lists(mod_spec: ModuleJsonTestSpec):
241241
common = set(mod_spec.should_not_be_serialized) & set(mod_spec.not_yet_serializable)
242242
assert len(common) == 0, (
243243
f"Defined in both {mod_spec.name} 'Not yet serializable' "

cirq-google/cirq_google/ops/sycamore_gate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ def _json_dict_(self):
6464
[0, 0, 0, exp(- 1j * π/6)]]
6565
6666
This gate can be performed on the Google's Sycamore chip and
67-
is close to the gates that were used to demonstrate quantum
68-
supremacy used in this paper:
67+
is close to the gates that were used to demonstrate beyond-classical
68+
computation in this paper:
6969
https://www.nature.com/articles/s41586-019-1666-5
7070
""",
7171
)

docs/google/devices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ daily basis.
283283

284284
The Sycamore device is a 54 qubit device introduced in 2019 with a
285285
[publication in Nature](https://www.nature.com/articles/s41586-019-1666-5).
286-
Note that the supremacy result in the paper utilized a device that had 53 qubits since
286+
Note that the beyond-classical result in the paper utilized a device that had 53 qubits since
287287
one qubit had malfunctioned.
288288

289289
It can be accessed using `cirq.GridQubit(row, col)` using grid coordinates specified below.

0 commit comments

Comments
 (0)