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
3 changes: 2 additions & 1 deletion dev_tools/qualtran_dev_tools/make_reference_docs/_make.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
'qualtran.linalg',
'qualtran._infra.gate_with_registers.GateWithRegisters',
'qualtran.resource_counting.t_counts_from_sigma',
'qualtran.rotation_synthesis', # TODO: https://github.com/quantumlib/Qualtran/issues/1767
]
MINIMAL = True

Expand Down Expand Up @@ -341,7 +342,7 @@ def make_reference_docs(
The steps are

1. Walk the package structure with `get_pages`.
2. Write each page; and write the table of contentes (TOC).
2. Write each page; and write the table of contents (TOC).

There are multiple 'types' of 'path's we must consider when rendering the documentation.

Expand Down
2 changes: 2 additions & 0 deletions docs/bloq_infra.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ types (``Register``), and algorithms (``CompositeBloq``).
DataTypes.ipynb
simulation/classical_sim.ipynb
simulation/tensor.ipynb
simulation/MBUC.ipynb
simulation/supertensor.ipynb
resource_counting/call_graph.ipynb
resource_counting/qubit_counts.ipynb
Adjoint.ipynb
Expand Down
2 changes: 1 addition & 1 deletion qualtran/rotation_synthesis/channels/channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def from_sequence(cls, seq: Sequence[str], twirl: bool = False) -> UnitaryChanne

Args:
seq: A sequence of gate names in circuit order.
Supported gate names are {Tx, Ty, Tz, H, S, X, Y, Z}.
Supported gate names are {Tx, Ty, Tz, H, S, X, Y, Z}.
twirl: Whether the unitary is applied with a ZS twirling or not.

Returns:
Expand Down
2 changes: 1 addition & 1 deletion qualtran/rotation_synthesis/rings/__init__.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.

"""A sub-package represnting the rings used in rotation synthesis."""
"""A sub-package representing the rings used in rotation synthesis."""

from qualtran.rotation_synthesis.rings.zsqrt2 import ZSqrt2
from qualtran.rotation_synthesis.rings.zw import ZW