Skip to content

Commit

Permalink
Revert change in symbol update thing
Browse files Browse the repository at this point in the history
  • Loading branch information
ThrudPrimrose committed Dec 2, 2024
1 parent f9c95b5 commit 78801b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dace/sdfg/sdfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -1405,7 +1405,7 @@ def arglist(self, scalars_only=False, free_symbols=None) -> Dict[str, dt.Data]:

for k in free_symbols:
assert isinstance(k, str)
scalar_args.update({k: dt.Scalar(self.symbols[k]) for k in free_symbols if k in self.symbols and not k.startswith('__dace')})
scalar_args.update({k: dt.Scalar(self.symbols[k]) for k in free_symbols if not k.startswith('__dace')})

# Fill up ordered dictionary
result = collections.OrderedDict()
Expand Down

0 comments on commit 78801b6

Please sign in to comment.