Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
faciliate -> facilitate
  • Loading branch information
eltociear authored Mar 23, 2024
1 parent f64f110 commit 5753095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thunder/torch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1868,7 +1868,7 @@ def einsum(equation: str, *operands: TensorLike | Sequence[TensorLike]) -> Tenso
utils.check_types(operands, TensorProxy)

orig_eq = equation
# Removes spaces and replaces ... with . to faciliate parsing later
# Removes spaces and replaces ... with . to facilitate parsing later
equation = re.sub(r"\s", "", equation)
equation = re.sub(r"\.\.\.", ".", equation)

Expand Down

0 comments on commit 5753095

Please sign in to comment.