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

Deal with absence of indices in array_buffer_map's in-footprint checking

parent 02e1ec2a
No related branches found
No related tags found
No related merge requests found
...@@ -373,6 +373,11 @@ class ArrayToBufferMap(object): ...@@ -373,6 +373,11 @@ class ArrayToBufferMap(object):
usage_domain, self.storage_axis_names, usage_domain, self.storage_axis_names,
self.prime_sweep_inames) self.prime_sweep_inames)
if stor2sweep is None:
# happens if there are no indices
# -> yes, in footprint
return True
if isinstance(stor2sweep, isl.BasicMap): if isinstance(stor2sweep, isl.BasicMap):
stor2sweep = isl.Map.from_basic_map(stor2sweep) stor2sweep = isl.Map.from_basic_map(stor2sweep)
......
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