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

fix input naming

parent dd477a5a
No related branches found
No related tags found
No related merge requests found
...@@ -44,10 +44,12 @@ def _realize_input(sf, insn_dep): ...@@ -44,10 +44,12 @@ def _realize_input(sf, insn_dep):
# Set up the input for stage 1 # Set up the input for stage 1
if sf.stage == 1 and not get_option("fastdg"): if sf.stage == 1 and not get_option("fastdg"):
assert sf.coeff_func assert sf.coeff_func
assert sf.input is not None
# Get the input temporary! # Get the input temporary!
input_setup = get_buffer_temporary(sf.buffer, input_setup = get_buffer_temporary(sf.buffer,
shape=sf.flat_input_shape, shape=sf.flat_input_shape,
name=sf.input
) )
# Write initial coefficients into buffer # Write initial coefficients into buffer
......
...@@ -33,7 +33,8 @@ def attach_vectorization_info(sf): ...@@ -33,7 +33,8 @@ def attach_vectorization_info(sf):
def no_vectorization(sumfacts): def no_vectorization(sumfacts):
for sf in sumfacts: for sf in sumfacts:
_cache_vectorization_info(sf, sf.copy(buffer=get_counted_variable("buffer"))) _cache_vectorization_info(sf, sf.copy(buffer=get_counted_variable("buffer"),
input=get_counted_variable("input")))
def decide_stage_vectorization_strategy(sumfacts, stage, restriction): def decide_stage_vectorization_strategy(sumfacts, stage, restriction):
......
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