Skip to content

Commit

Permalink
compiler: Bump default block size
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioLuporini committed Jul 17, 2024
1 parent 3054604 commit 4dbdcd8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions devito/types/dimension.py
Original file line number Diff line number Diff line change
Expand Up @@ -1223,10 +1223,8 @@ def _arg_names(self):
return ()

def _arg_defaults(self, **kwargs):
# TODO: need a heuristic to pick a default incr size
# TODO: move default value to __new__
try:
return {self.step.name: 8}
return {self.step.name: 16}
except AttributeError:
# `step` not a Symbol
return {}
Expand Down

0 comments on commit 4dbdcd8

Please sign in to comment.