We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bf5a0c commit 68d3ce5Copy full SHA for 68d3ce5
2 files changed
pytato/__init__.py
@@ -168,6 +168,9 @@ def set_debug_enabled(flag: bool) -> None:
168
from pytato.transform.lower_to_index_lambda import to_index_lambda
169
from pytato.transform.materialize import materialize_with_mpms
170
from pytato.transform.metadata import unify_axes_tags
171
+from pytato.transform.push_index_to_materialized_nodes import (
172
+ push_index_to_materialized_nodes,
173
+)
174
from pytato.transform.remove_broadcasts_einsum import rewrite_einsums_with_no_broadcasts
175
from pytato.visualization import (
176
get_dot_graph,
@@ -275,6 +278,7 @@ def set_debug_enabled(flag: bool) -> None:
275
278
"ones_like",
276
279
"pad",
277
280
"prod",
281
+ "push_index_to_materialized_nodes",
282
"real",
283
"reshape",
284
"rewrite_einsums_with_no_broadcasts",
0 commit comments