@matus_chochlik@mastodon.online
Post #1546602
2026-04-14 07:28 UTC
@regehr In 2020 I did a talk about something similar; a wrapper executable around ld/lld/gold/whatever, that allowed to limit how many concurrent instances of a specific executable are executed at a particular time. If more than the specified limit were launched, they were queued and executed later.
I even had an extension, that used an ML classifier to examine the parameters and input files passed to the linker and set the limit dynamically.
I still have the PDF and code if you're interested.
Replies (1)
-
@matus_chochlik@mastodon.online 2026-04-14 07:31
@regehr and I think that instead of the ML thing a piece of code that can detect impending OOM could be used to specify the limit quite easily.