Skip to content

Commit

Permalink
implements lp.distribute_loops
Browse files Browse the repository at this point in the history
  • Loading branch information
kaushikcfd committed Jun 19, 2022
1 parent 2c1a5f0 commit 627ed8d
Show file tree
Hide file tree
Showing 4 changed files with 442 additions and 0 deletions.
5 changes: 5 additions & 0 deletions doc/ref_transform.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ Manipulating Instructions

.. autofunction:: add_barrier

Loop Distribution
-----------------

.. automodule:: loopy.transform.loop_distribution

Registering Library Routines
----------------------------

Expand Down
4 changes: 4 additions & 0 deletions loopy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@
from loopy.transform.pack_and_unpack_args import pack_and_unpack_args_for_call

from loopy.transform.realize_reduction import realize_reduction
from loopy.transform.loop_distribution import (distribute_loops,
IllegalLoopDistributionError)

# }}}

Expand Down Expand Up @@ -253,6 +255,8 @@

"pack_and_unpack_args_for_call",

"distribute_loops", "IllegalLoopDistributionError",

# }}}

"get_dot_dependency_graph",
Expand Down
Loading

0 comments on commit 627ed8d

Please sign in to comment.