From 35dc03b6e9b9d20f9f0340e3fc1609ead5dee1c9 Mon Sep 17 00:00:00 2001 From: Roman Cattaneo <1116746+romanc@users.noreply.github.com> Date: Fri, 9 May 2025 14:00:23 +0200 Subject: [PATCH 1/2] Ochestration with ConstantPropagation ConstantPropagation is part of the standard simplification pipeline. It was previously skipped because of an issue. In the meantime, that issue was resolved and we can propagate constats again. --- ndsl/dsl/dace/orchestration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ndsl/dsl/dace/orchestration.py b/ndsl/dsl/dace/orchestration.py index c09b69cc..326a8978 100644 --- a/ndsl/dsl/dace/orchestration.py +++ b/ndsl/dsl/dace/orchestration.py @@ -111,7 +111,7 @@ def _simplify( validate=validate, validate_all=validate_all, verbose=verbose, - skip=["ConstantPropagation"], + skip=[], ).apply_pass(sdfg, {}) From 4a1df15d71d51f3d07830d1d8f35f08c5a8fbe3d Mon Sep 17 00:00:00 2001 From: Roman Cattaneo <1116746+romanc@users.noreply.github.com> Date: Fri, 9 May 2025 14:16:44 +0200 Subject: [PATCH 2/2] remove now unused argument --- ndsl/dsl/dace/orchestration.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ndsl/dsl/dace/orchestration.py b/ndsl/dsl/dace/orchestration.py index 326a8978..8d7f4ae4 100644 --- a/ndsl/dsl/dace/orchestration.py +++ b/ndsl/dsl/dace/orchestration.py @@ -111,7 +111,6 @@ def _simplify( validate=validate, validate_all=validate_all, verbose=verbose, - skip=[], ).apply_pass(sdfg, {})