Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cirq-core/cirq/devices/grid_device_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

"""Metadata subtype for 2D Homogenous devices."""
"""Metadata subtype for 2D homogeneous devices."""

from __future__ import annotations

Expand All @@ -30,7 +30,7 @@

@value.value_equality
class GridDeviceMetadata(device.DeviceMetadata):
"""Hardware metadata for homogenous 2d symmetric grid devices."""
"""Hardware metadata for homogeneous 2d symmetric grid devices."""

def __init__(
self,
Expand Down
2 changes: 1 addition & 1 deletion cirq-core/cirq/devices/noise_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def noisy_moment(self, moment: cirq.Moment, system_qubits: Sequence[cirq.Qid]) -


def validate_all_measurements(moment: cirq.Moment) -> bool:
"""Ensures that the moment is homogenous and returns whether all ops are measurement gates.
"""Ensures that the moment is homogeneous and returns whether all ops are measurement gates.

Args:
moment: the moment to be checked
Expand Down
2 changes: 1 addition & 1 deletion cirq-core/cirq/experiments/t2_decay_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def t2_decay(
π/2, t, π, 2t, π, ... 2t, π, t

The first pulse, a sqrt(Y) gate, will put the qubit's state on the Bloch
equator. After a delay, successive X gates will refocus dehomogenous
equator. After a delay, successive X gates will refocus dehomogeneous

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Native speakers - is dehomogeneous a real word?

Should it be non-homogeneous instead?

phase effects by causing them to precess in opposite directions and
averaging their effects across the entire pulse train.

Expand Down
2 changes: 1 addition & 1 deletion docs/google/devices.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ Google devices provide several options for two-qubit gates.
The availability of these gates is controlled by the gateset
parameter that is used.

Note that current hardware gates are noisy and not homogenous
Note that current hardware gates are noisy and not homogeneous
across the device. Unitaries provided below are for the ideal case.
Real unitaries applied to the qubit may vary from qubit to qubit
and may drift over time.
Expand Down
Loading