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

Fix temp var usage of AccessRangeMapper

parent 5d4d7880
No related branches found
No related tags found
No related merge requests found
......@@ -785,6 +785,13 @@ def determine_shapes_of_temporaries(knl):
armap.access_range, i)
for i in xrange(armap.access_range.dim(dim_type.set))])
else:
if armap.bad_subscripts:
raise RuntimeError("cannot determine access range for '%s': "
"undetermined index in subscript(s) '%s'"
% (tv.name, ", ".join(
str(i) for i in armap.bad_subscripts)))
# no subscripts found, let's call it a scalar
base_indices = ()
shape = ()
......
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