From: Eric Bavier <bavier@posteo.net>
To: "Clément Lassieur" <clement@lassieur.org>
Cc: Jonathan Brielmaier <jonathan.brielmaier@web.de>, 66720@debbugs.gnu.org
Subject: [bug#66720] [PATCH] gnu: icecat: honor parallel-job-count.
Date: Thu, 26 Oct 2023 04:23:30 +0000 [thread overview]
Message-ID: <921ec2aa3bb7640b9aa27873022f410f187631b3.camel@posteo.net> (raw)
In-Reply-To: <877cnay0qs.fsf@lassieur.org>
Hello Clément,
Thank you for your reply.
On Wed, 2023-10-25 at 21:12 +0200, Clément Lassieur wrote:
> Eric Bavier <bavier@posteo.net> writes:
>
> > - ;; mach will use parallel build if possible by default
> > - `(,@(if parallel-build?
> > - '()
> > - '("-j1"))
> > + ;; mach will use a wide parallel build if possible by
> > + ;; default, so reign it in if requested.
>
> It seems like Icecat makes a choice based on available memory. Why do
> you want to override this with something that would potentially not work
> if memory is lacking?
I think our concerns roughly overlap.
I wasn't aware that it considers available memory. It didn't seem that way
to me. I will typically set `--cores=2` for guix builds on my system, to
otherwise keep it available for other use. Recently, with no substitute
available, I found my system grinding to a halt while building icecat. It
was using every core on the system, and filling all of my RAM (I had not
activated a swap space at this point).
I think this is the code in question, from
./python/mozbuild/mozbuild/build_commands.py:
if num_jobs == 0:
if job_size == 0:
job_size = 2.0 if self.substs.get("CC_TYPE") == "gcc" else 1.0 # GiB
cpus = multiprocessing.cpu_count()
if not psutil or not job_size:
num_jobs = cpus
else:
mem_gb = psutil.virtual_memory().total / 1024 ** 3
from_mem = round(mem_gb / job_size)
num_jobs = max(1, min(cpus, from_mem))
print(
" Parallelism determined by memory: using %d jobs for %d cores "
"based on %.1f GiB RAM and estimated job size of %.1f GiB"
% (num_jobs, cpus, mem_gb, job_size)
)
So there's no fancy load balancing going on, just based on total virtual
memory, assuming 2GiB per build job. For a dedicated build machine this is
probably fine, or in the situation you bring up, where total system memory is
lacking. But it is not great when available free memory is lacking, such as
an in-use desktop system.
While it's not a perfect proxy for system load, I feel like, in general,
packages should honor the `--cores=N` build option. If they take other
things into consideration, we should try to work with that too. Perhaps we
could figure something out such that `--cores=N` sets an upper limit and
icecat's `mach` is able to cap that further based on system virtual memory?
`~Eric
next prev parent reply other threads:[~2023-10-26 4:54 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-24 3:26 [bug#66720] [PATCH] gnu: icecat: honor parallel-job-count Eric Bavier
2023-10-25 19:12 ` Clément Lassieur
2023-10-26 4:23 ` Eric Bavier [this message]
2023-10-29 16:21 ` Clément Lassieur
2023-11-04 0:17 ` Clément Lassieur
2023-11-14 5:15 ` bug#66720: " Eric Bavier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=921ec2aa3bb7640b9aa27873022f410f187631b3.camel@posteo.net \
--to=bavier@posteo.net \
--cc=66720@debbugs.gnu.org \
--cc=clement@lassieur.org \
--cc=jonathan.brielmaier@web.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).