Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing typos #12316

Merged
merged 1 commit into from
May 1, 2024
Merged
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
8 changes: 4 additions & 4 deletions qiskit/transpiler/passes/synthesis/high_level_synthesis.py
Original file line number Diff line number Diff line change
Expand Up @@ -732,9 +732,9 @@ class KMSSynthesisLinearFunction(HighLevelSynthesisPlugin):

* use_inverted: Indicates whether to run the algorithm on the inverse matrix
and to invert the synthesized circuit.
In certain cases this provides a better decomposition then the direct approach.
In certain cases this provides a better decomposition than the direct approach.
* use_transposed: Indicates whether to run the algorithm on the transposed matrix
and to invert the order oF CX gates in the synthesized circuit.
and to invert the order of CX gates in the synthesized circuit.
In certain cases this provides a better decomposition than the direct approach.

"""
Expand Down Expand Up @@ -778,9 +778,9 @@ class PMHSynthesisLinearFunction(HighLevelSynthesisPlugin):
* section size: The size of each section used in the Patel–Markov–Hayes algorithm [1].
* use_inverted: Indicates whether to run the algorithm on the inverse matrix
and to invert the synthesized circuit.
In certain cases this provides a better decomposition then the direct approach.
In certain cases this provides a better decomposition than the direct approach.
* use_transposed: Indicates whether to run the algorithm on the transposed matrix
and to invert the order oF CX gates in the synthesized circuit.
and to invert the order of CX gates in the synthesized circuit.
In certain cases this provides a better decomposition than the direct approach.

References:
Expand Down
Loading