Skip to content

Commit

Permalink
No longer explicitly specify strict dataflow mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-paul-mueller committed Dec 3, 2024
1 parent 11a509e commit 724d1f5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions dace/transformation/auto/auto_optimize.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,8 @@ def greedy_fuse(graph_or_subgraph: GraphViewType,
# If we have an SDFG, recurse into graphs
graph_or_subgraph.simplify(validate_all=validate_all)
# MapFusion for trivial cases
# We have to use `strict_dataflow` because it is known that `CompositeFusion`
# has problems otherwise.
graph_or_subgraph.apply_transformations_repeated(
MapFusion(strict_dataflow=True),
MapFusion,
validate_all=validate_all,
)

Expand Down

0 comments on commit 724d1f5

Please sign in to comment.