Skip to content

Commit

Permalink
Update dace/transformation/interstate/gpu_transform_sdfg.py
Browse files Browse the repository at this point in the history
Co-authored-by: Tal Ben-Nun <tbennun@users.noreply.github.com>
  • Loading branch information
ThrudPrimrose and tbennun authored Nov 1, 2024
1 parent a25d096 commit c0bc17a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dace/transformation/interstate/gpu_transform_sdfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def _get_marked_inputs_and_outputs(self, state, entry_node) -> list:

def _output_or_input_is_marked_host(self, state, entry_node) -> bool:
marked_accesses = self._get_marked_inputs_and_outputs(state, entry_node)
return (len(marked_accesses) > 0)
return len(marked_accesses) > 0


def apply(self, _, sdfg: sd.SDFG):
Expand Down

0 comments on commit c0bc17a

Please sign in to comment.