From 080919e70cbe0d7f4404be62675044339179a4a2 Mon Sep 17 00:00:00 2001 From: Dominic Kempf <dominic.kempf@iwr.uni-heidelberg.de> Date: Wed, 21 Mar 2018 11:14:46 +0100 Subject: [PATCH] Remove jacobian iname nesting from kernel realization It is applied to the function call... --- python/dune/perftool/sumfact/realization.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python/dune/perftool/sumfact/realization.py b/python/dune/perftool/sumfact/realization.py index 6132f6d3..01d01bf1 100644 --- a/python/dune/perftool/sumfact/realization.py +++ b/python/dune/perftool/sumfact/realization.py @@ -271,9 +271,7 @@ def realize_sumfact_kernel_function(sf): tag = "{}_{}".format(tag, "_".join(sf.within_inames)) # Collect the key word arguments for the loopy instruction - insn_args = {"forced_iname_deps": frozenset([i for i in out_inames]).union(frozenset(sf.within_inames)), - "forced_iname_deps_is_final": True, - "depends_on": insn_dep, + insn_args = {"depends_on": insn_dep, "tags": frozenset({tag}), "predicates": sf.predicates, "groups": frozenset({sf.group_name}), -- GitLab