Skip to content

Commit

Permalink
Bugfix: Duplicate memlet error with add_memlet_path
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastruemper committed Sep 4, 2023
1 parent 9a8279d commit a095fab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dace/sdfg/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -1689,7 +1689,7 @@ def add_memlet_path(self, *path_nodes, memlet=None, src_conn=None, dst_conn=None
# Modify edge to match memlet path
edge._src_conn = sconn
edge._dst_conn = dconn
edge._data = cur_memlet
edge._data = copy.deepcopy(cur_memlet)

# Add connectors to edges
if propagate_forward:
Expand Down

0 comments on commit a095fab

Please sign in to comment.