-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
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
[Tune] Remove queue_trials. #19472
[Tune] Remove queue_trials. #19472
Conversation
432162d
to
71d3cf4
Compare
@krfricke Do you know if I need to run weekly pbt test manually? My concern is not sure how pbt may be affected by this change. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! We should just make sure to properly deprecate the queue_trials
argument from run()
and run_experiments()
so users with existing scripts are guided towards adjusting their code to make it run again (most likely just removing that argument).
release/long_running_distributed_tests/workloads/pytorch_pbt_failure.py
Outdated
Show resolved
Hide resolved
671dd56
to
f035b28
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, but let's raise an error and give a wordy explanation so people know how to adjust their script and what behavior to expect.
python/ray/tune/tune.py
Outdated
_remote: bool = None, | ||
queue_trials: bool = None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
_remote: bool = None, | |
queue_trials: bool = None): | |
queue_trials: bool = None, | |
_remote: bool = None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great!
Why are these changes needed?
Related issue number
Checks
scripts/format.sh
to lint the changes in this PR.