Skip to content
Snippets Groups Projects
Commit 29bd9565 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Fix assumption merging in fusion

parent cc270446
Branches
Tags
No related merge requests found
......@@ -218,9 +218,9 @@ def _fuse_two_kernels(knla, knlb):
assump_a, assump_b = isl.align_two(assump_a, assump_b)
shared_param_names = list(
set(dom_a.get_var_dict(dim_type.set))
set(assump_a.get_var_dict(dim_type.set))
&
set(dom_b.get_var_dict(dim_type.set)))
set(assump_b.get_var_dict(dim_type.set)))
assump_a_s = assump_a.project_out_except(shared_param_names, [dim_type.param])
assump_b_s = assump_a.project_out_except(shared_param_names, [dim_type.param])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment