Skip to content

"Concatenate calls" transformation (updated) #477

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
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
3 changes: 3 additions & 0 deletions pytato/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ def set_debug_enabled(flag: bool) -> None:
rewrite_einsums_with_no_broadcasts)
from pytato.transform.metadata import unify_axes_tags
from pytato.function import trace_call
from pytato.transform.calls import concatenate_calls

__all__ = (
"dtype",
Expand Down Expand Up @@ -160,6 +161,8 @@ def set_debug_enabled(flag: bool) -> None:

"trace_call",

"concatenate_calls",

"make_distributed_recv", "make_distributed_send", "DistributedRecv",
"DistributedSend", "staple_distributed_send", "DistributedSendRefHolder",

Expand Down
Loading