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

Fix dependencies of init instruction in array buffering

parent b5e01ace
No related branches found
No related tags found
No related merge requests found
......@@ -313,7 +313,10 @@ def buffer_array(kernel, var_name, buffer_inames, init_expression=None,
init_instruction = ExpressionInstruction(id=init_insn_id,
assignee=buf_var_init,
expression=init_expression,
forced_iname_deps=frozenset(within_inames))
forced_iname_deps=frozenset(within_inames),
insn_deps=frozenset(),
insn_deps_is_final=True,
)
# }}}
......
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