Skip to content
Merged
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
2 changes: 1 addition & 1 deletion arraycontext/impl/jax/fake_numpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def _full_like_array(self,

# }}}

# {{{ array manipulation routies
# {{{ array manipulation routines

def ravel(self, a: ArrayOrContainerOrScalar, order="C"):
"""
Expand Down
4 changes: 2 additions & 2 deletions arraycontext/impl/pytato/outline.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def _get_arg_id_to_arg(
kwargs: Mapping[str, ArrayOrContainerOrScalar | None]
) -> immutabledict[tuple[SerializationKey, ...], pt.Array]:
"""
Helper for :meth:`OulinedCall.__call__`. Extracts mappings from argument id
Helper for :meth:`OutlinedCall.__call__`. Extracts mappings from argument id
to argument values. See
:attr:`CompiledFunction.input_id_to_name_in_function` for argument-id's
representation.
Expand Down Expand Up @@ -120,7 +120,7 @@ def _get_arg_id_to_placeholder(
prefix: str | None = None
) -> immutabledict[tuple[SerializationKey, ...], pt.Placeholder]:
"""
Helper for :meth:`OulinedCall.__call__`. Constructs a :class:`pytato.Placeholder`
Helper for :meth:`OutlinedCall.__call__`. Constructs a :class:`pytato.Placeholder`
for each argument in *arg_id_to_arg*. See
:attr:`CompiledFunction.input_id_to_name_in_function` for argument-id's
representation.
Expand Down
Loading