3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 22:14:08 +00:00
sby/sbysrc
Jannis Harder edbc0548af Fix deadlock with parallel SBY procs each with parallel tasks
When multiple SBY processes run in parallel (from a Makefile or other
job-server aware tool) and each SBY process runs tasks in parallel, each
with enough tasks to be limited by the total job count, it is possible
for the processes to race in such a way that every SBY process's helper
process is in a blocking read from the job-server but a job-token would
only become available as soon as any SBY process exits.

In that situation SBY doesn't actually need the job-token anymore and
only previously requested it as there was opportunity for parallelism.
It would immediatly return the token as soon as it is acquired. That's
usually sufficient to deal with no-longer-needed-but-requested tokens,
but when SBY is done, it needs to return the job-token held by the
parent process ASAP which it can only do by actually exiting, so we need
to interrupt the blocking read of SBY's helper process.

This could be done by sending a signal to the helper process, except
that Python made the decision in 3.5 to have automatic EINTR retry loops
around most system calls with no opt-out. That was part of the reason to
go with this specifc helper process design that avoids interrupting a
blocking read in the first place.

Using an exception raised from the signal handler instead might lose a
token when the signal arrives after the read returns, but before the
token is stored in a variable. You cannot recover from a lost token in
the context of the job-server protocol, so that's not an option. (This
can't happen with recent Python versions but that would depend on
undocumented behavior that could plausibly change again.)

Thankfully the only case where we need to interrupt the read is when SBY
is about to exit and will not request any further tokens. This allows us
to use a signal handler that uses dup2 to close and replace the
read-from fd with one that already is at EOF, making the next retry
return immediatly. (If we'd need to interrupt a read and continue
running we could also do this but the fd shuffling would be more
involved.)
2023-07-17 15:29:17 +02:00
..
sby.py -f clean: QoL improvement on Windows concerning file/dir removal locking 2023-02-18 09:36:18 +00:00
sby_autotune.py Run tasks in parallel 2022-08-18 14:38:40 +02:00
sby_core.py Add aigfolds option 2023-06-07 22:05:17 +02:00
sby_design.py Unified trace generation using yosys's sim across all engines 2023-01-10 18:42:26 +01:00
sby_engine_abc.py Add support for "abc pdr -d" engine 2023-06-07 22:21:06 +02:00
sby_engine_aiger.py avy: Fold aiger model using abc to support assumptions 2023-01-11 18:36:06 +01:00
sby_engine_btor.py Unified trace generation using yosys's sim across all engines 2023-01-10 18:42:26 +01:00
sby_engine_smtbmc.py smtbmc: Allow using --keep-going in cover mode 2023-06-23 10:34:03 +02:00
sby_jobserver.py Fix deadlock with parallel SBY procs each with parallel tasks 2023-07-17 15:29:17 +02:00
sby_mode_bmc.py Unified trace generation using yosys's sim across all engines 2023-01-10 18:42:26 +01:00
sby_mode_cover.py Unified trace generation using yosys's sim across all engines 2023-01-10 18:42:26 +01:00
sby_mode_live.py Add colors to engine header message 2022-11-24 18:12:22 +01:00
sby_mode_prove.py Unified trace generation using yosys's sim across all engines 2023-01-10 18:42:26 +01:00
sby_sim.py Enable yosys sim support for clock signals in hierarchical designs 2023-01-11 18:02:45 +01:00