Skip to content

Commit

Permalink
Remove dace.compiletime arguments from symbolic analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
tbennun committed Dec 26, 2024
1 parent 70b4e43 commit 61093b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dace/frontend/python/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ def _create_sdfg_args(self, sdfg: SDFG, args: Tuple[Any], kwargs: Dict[str, Any]
# Start with default arguments, then add other arguments
result = {**self.default_args}
# Reconstruct keyword arguments
result.update({aname: arg for aname, arg in zip(self.argnames, args)})
result.update({aname: arg for aname, arg in zip(self.argnames, args) if aname not in self.constant_args})
result.update(kwargs)

# Add closure arguments to the call
Expand Down

0 comments on commit 61093b0

Please sign in to comment.