Closed BBC-Esq closed 1 month ago
This issue is stale because it has been open for 30 days with no activity. Remove stale label or comment or this will be closed in 7 days.
This issue was closed because it has been inactive for 7 days since being marked as stale.
In the
exp_manager.py
script, you need to change the line that readsrank_termination_signal: signal.Signals = signal.SIGKILL
to...
rank_termination_signal: signal.Signals = signal.SIGTERM if os.name == 'nt' else signal.SIGKILL
That way it will work on Windows.
You're welcome.