Skip to content

Commit

Permalink
compiler: fix tile input
Browse files Browse the repository at this point in the history
  • Loading branch information
mloubout committed Sep 22, 2023
1 parent 0b8eb8e commit 9cdcbdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devito/passes/iet/parpragma.py
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ def _make_partree(self, candidates, nthreads=None, index=None):
if self._is_offloadable(root):
body = self.DeviceIteration(gpu_fit=self.gpu_fit,
ncollapsed=len(collapsable) + 1,
tile=self.par_tile,
tile=self.par_tile.next(),
**root.args)
partree = ParallelTree([], body, nthreads=nthreads)

Expand Down

0 comments on commit 9cdcbdb

Please sign in to comment.