Skip to content

Commit

Permalink
chnage pplacer threads to 1 in processor.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Anna-MarieSeelen authored Nov 26, 2024
1 parent 3c9b501 commit d759525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aviary/modules/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def __init__(self,
self.output = os.path.abspath(args.output)
self.threads = args.max_threads
self.max_memory = args.max_memory
self.pplacer_threads = min(int(self.threads), 48)
self.pplacer_threads = min(int(self.threads), 1)
self.workflows = args.workflow
self.request_gpu = args.request_gpu

Expand Down

0 comments on commit d759525

Please sign in to comment.