Skip to content

Commit

Permalink
Correction in the docstring of the SDFG class's init method (#1571)
Browse files Browse the repository at this point in the history
This PR corrects the `SDFG.__init__` docstring to refer to the correct
parameter `constants` (compile-time constants) instead of `symbols`
(scalars that are immutable in the SDFG scope). See also #1563
  • Loading branch information
alexnick83 committed May 8, 2024
1 parent e60652c commit 5339c71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dace/sdfg/sdfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,8 +461,8 @@ def __init__(self,
:param name: Name for the SDFG (also used as the filename for
the compiled shared library).
:param symbols: Additional dictionary of symbol names -> types that the SDFG
defines, apart from symbolic data sizes.
:param constants: Additional dictionary of compile-time constants
{name (str): tuple(type (dace.data.Data), value (Any))}.
:param propagate: If False, disables automatic propagation of
memlet subsets from scopes outwards. Saves
processing time but disallows certain
Expand Down

0 comments on commit 5339c71

Please sign in to comment.