We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the exp_manager.py script, you need to change the line that reads
exp_manager.py
rank_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.
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
This issue was closed because it has been inactive for 7 days since being marked as stale.
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: