mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-07 21:42:08 -07:00
limiting max convert subprocessors to 6
This commit is contained in:
parent
52847bd58f
commit
d11637ec55
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ class ConvertSubprocessor(SubprocessorBase):
|
||||||
|
|
||||||
#override
|
#override
|
||||||
def process_info_generator(self):
|
def process_info_generator(self):
|
||||||
r = [0] if self.debug else range(multiprocessing.cpu_count())
|
r = [0] if self.debug else range( max(multiprocessing.cpu_count(), 6) )
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue