Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
  • Loading branch information
Ivan Butygin committed Nov 11, 2019
commit 07b630fbbca01e0ab927af8f80895bcc0c6ff869
4 changes: 2 additions & 2 deletions hpat/distributed.py
Original file line number Diff line number Diff line change
Expand Up @@ -1709,9 +1709,9 @@ def _run_parfor(self, parfor, namevar_table, depth):

dist_depth = 0

if depth > dist_depth:
if depth >= dist_depth:
# Do not distribute
if depth == (dist_depth + 1):
if depth == dist_depth:
parfor.no_sequential_lowering = True
return [parfor]

Expand Down