Skip to content
Snippets Groups Projects
Commit 3d013b97 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

[bugfix] pass correct sf kernel into input realization

parent 0001fb03
No related branches found
No related tags found
No related merge requests found
...@@ -69,7 +69,7 @@ def _realize_sum_factorization_kernel(sf): ...@@ -69,7 +69,7 @@ def _realize_sum_factorization_kernel(sf):
if sf.vectorized: if sf.vectorized:
for i, inputsf in enumerate(sf.kernels): for i, inputsf in enumerate(sf.kernels):
inputsf.input.realize(inputsf, i, insn_dep) inputsf.input.realize(sf, i, inputsf.insn_dep.union(insn_dep))
else: else:
sf.input.realize(sf, 0, insn_dep) sf.input.realize(sf, 0, insn_dep)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment