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

Use dim_{min,max} elim perf tweak

parent 39cb34d9
No related branches found
No related tags found
No related merge requests found
...@@ -257,10 +257,10 @@ class SetOperationCacheManager: ...@@ -257,10 +257,10 @@ class SetOperationCacheManager:
return result return result
def dim_min(self, set, *args): def dim_min(self, set, *args):
return self.op(set, "dim_min", isl.dim_min_projected, args) return self.op(set, "dim_min", isl.dim_min_with_elimination, args)
def dim_max(self, set, *args): def dim_max(self, set, *args):
return self.op(set, "dim_max", isl.dim_max_projected, args) return self.op(set, "dim_max", isl.dim_max_with_elimination, args)
def base_index_and_length(self, set, iname, context=None): def base_index_and_length(self, set, iname, context=None):
if not isinstance(iname, int): if not isinstance(iname, int):
......
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