-
Notifications
You must be signed in to change notification settings - Fork 313
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
Reduce complexity in wait_for_trials_and_report_results
#3175
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
This pull request was exported from Phabricator. Differential Revision: D67178422 |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3175 +/- ##
==========================================
- Coverage 95.82% 95.82% -0.01%
==========================================
Files 503 503
Lines 50850 50840 -10
==========================================
- Hits 48727 48716 -11
- Misses 2123 2124 +1 ☔ View full report in Codecov by Sentry. |
) Summary: This diff contains the following changes: 1. Deprecates ESSs `seconds_between_polls`, as we can leverage SchedulerOption's `init_seconds_between_polls` instead 2. Set SchedulerOption's `seconds_between_polls_backoff_factor` to 1 if an ESS is provided 3. Use a try-catch in `wait_for_completed_trials_and_report_results` when doing `idle_callback`, so it doesn't fail the Scheduler Differential Revision: D67178422
71a75c7
to
078c923
Compare
This pull request was exported from Phabricator. Differential Revision: D67178422 |
) Summary: This diff contains the following changes: 1. Deprecates ESSs `seconds_between_polls`, as we can leverage SchedulerOption's `init_seconds_between_polls` instead 2. Set SchedulerOption's `seconds_between_polls_backoff_factor` to 1 if an ESS is provided 3. Use a try-catch in `wait_for_completed_trials_and_report_results` when doing `idle_callback`, so it doesn't fail the Scheduler Reviewed By: mgarrard Differential Revision: D67178422
078c923
to
5e2d4dd
Compare
This pull request was exported from Phabricator. Differential Revision: D67178422 |
Summary:
This diff contains the following changes:
seconds_between_polls
, as we can leverage SchedulerOption'sinit_seconds_between_polls
insteadseconds_between_polls_backoff_factor
to 1 if an ESS is providedwait_for_completed_trials_and_report_results
when doingidle_callback
, so it doesn't fail the SchedulerDifferential Revision: D67178422