From 70181b0a213ed32a6a9431a2b53085588a4277fe Mon Sep 17 00:00:00 2001 From: Matthew Smith Date: Mon, 7 Jul 2025 12:30:34 -0500 Subject: [PATCH] export loopy module --- pytato/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pytato/__init__.py b/pytato/__init__.py index 41b5d6f86..c53ab26fa 100644 --- a/pytato/__init__.py +++ b/pytato/__init__.py @@ -49,6 +49,7 @@ def set_debug_enabled(flag: bool) -> None: import pytato.analysis as analysis import pytato.function as function +import pytato.loopy as loopy import pytato.tags as tags import pytato.transform as transform from pytato.array import ( @@ -249,6 +250,7 @@ def set_debug_enabled(flag: bool) -> None: "logical_and", "logical_not", "logical_or", + "loopy", "make_data_wrapper", "make_dict_of_named_arrays", "make_distributed_recv",