mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
builder: reduce # of subprocesses to N-1 for -jN, since the main process is also busy now
This commit is contained in:
parent
5cd0841e5f
commit
3889a1158f
@ -303,12 +303,15 @@ class Builder(object):
|
|||||||
# (parallel only works on POSIX, because the forking impl of
|
# (parallel only works on POSIX, because the forking impl of
|
||||||
# multiprocessing is required)
|
# multiprocessing is required)
|
||||||
if not (multiprocessing and
|
if not (multiprocessing and
|
||||||
self.app.parallel and
|
self.app.parallel > 1 and
|
||||||
self.allow_parallel and
|
self.allow_parallel and
|
||||||
os.name == 'posix'):
|
os.name == 'posix'):
|
||||||
self._write_serial(sorted(docnames), warnings)
|
self._write_serial(sorted(docnames), warnings)
|
||||||
else:
|
else:
|
||||||
self._write_parallel(sorted(docnames), warnings, self.app.parallel)
|
# number of subprocesses is parallel-1 because the main process
|
||||||
|
# is busy loading doctrees and doing write_doc_serialized()
|
||||||
|
self._write_parallel(sorted(docnames), warnings,
|
||||||
|
nproc=self.app.parallel - 1)
|
||||||
self.env.set_warnfunc(self.warn)
|
self.env.set_warnfunc(self.warn)
|
||||||
|
|
||||||
def _write_serial(self, docnames, warnings):
|
def _write_serial(self, docnames, warnings):
|
||||||
|
Loading…
Reference in New Issue
Block a user