Skip to content

Commit

Permalink
Disabled skip for Scalars.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnick83 committed Aug 2, 2023
1 parent f39762f commit 9ff1092
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dace/sdfg/nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -628,8 +628,8 @@ def validate(self, sdfg, state, references: Optional[Set[int]] = None, **context
for dname, desc in self.sdfg.arrays.items():
# TODO(later): Disallow scalars without access nodes (so that this
# check passes for them too).
if isinstance(desc, data.Scalar):
continue
# if isinstance(desc, data.Scalar):
# continue
if not desc.transient and dname not in connectors:
raise NameError('Data descriptor "%s" not found in nested SDFG connectors' % dname)
if dname in connectors and desc.transient:
Expand Down

0 comments on commit 9ff1092

Please sign in to comment.