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: 4 additions & 0 deletions pytato/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@ def set_debug_enabled(flag: bool) -> None:
from pytato.transform.lower_to_index_lambda import to_index_lambda
from pytato.transform.materialize import materialize_with_mpms
from pytato.transform.metadata import unify_axes_tags
from pytato.transform.push_index_to_materialized_nodes import (
push_index_to_materialized_nodes,
)
from pytato.transform.remove_broadcasts_einsum import rewrite_einsums_with_no_broadcasts
from pytato.visualization import (
get_dot_graph,
Expand Down Expand Up @@ -264,6 +267,7 @@ def set_debug_enabled(flag: bool) -> None:
"ones_like",
"pad",
"prod",
"push_index_to_materialized_nodes",
"real",
"reshape",
"rewrite_einsums_with_no_broadcasts",
Expand Down
1 change: 0 additions & 1 deletion pytato/raising.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ class BinaryOp(HighLevelOp):

@dataclass(frozen=True, eq=True, repr=True)
class ZerosLikeOp(HighLevelOp):
function: str
x: Array


Expand Down
Loading
Loading