Skip to content

Commit

Permalink
Remove hard-coded -4 processes
Browse files Browse the repository at this point in the history
  • Loading branch information
notadamking committed Jul 6, 2019
1 parent 714802a commit 5a34c6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optimize.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def optimize_code(params):


if __name__ == '__main__':
n_process = multiprocessing.cpu_count() - 4
n_process = multiprocessing.cpu_count()
params = {}

processes = []
Expand Down

0 comments on commit 5a34c6a

Please sign in to comment.