Skip to content

Commit

Permalink
[dace] Disable auto-optimize
Browse files Browse the repository at this point in the history
Not working in icon4py because of this issue:
spcl/dace#1468
  • Loading branch information
edopao committed Dec 13, 2023
1 parent cc161bf commit eda6c0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def run_dace_iterator(program: itir.FencilDefinition, *args, **kwargs):
build_cache = kwargs.get("build_cache", None)
build_type = kwargs.get("build_type", "RelWithDebInfo")
on_gpu = kwargs.get("on_gpu", False)
auto_optimize = kwargs.get("auto_optimize", True)
auto_optimize = kwargs.get("auto_optimize", False)
lift_mode = kwargs.get("lift_mode", LiftMode.FORCE_INLINE)
# ITIR parameters
column_axis = kwargs.get("column_axis", None)
Expand Down

0 comments on commit eda6c0f

Please sign in to comment.