-
Notifications
You must be signed in to change notification settings - Fork 1.1k
[Refactor] Remove the default value "mp" from distributed_executor_backend. #3007
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -439,7 +439,7 @@ class DeployConfig: | |
|
|
||
| # === Pipeline-wide engine settings (applied uniformly to every stage) === | ||
| trust_remote_code: bool = True | ||
| distributed_executor_backend: str = "mp" | ||
| distributed_executor_backend: str | None = None | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Either add a
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: This PR bundles three unrelated changes (config default, summary logging removal, test threshold relaxation). Consider splitting for cleaner history. |
||
| dtype: str | None = None | ||
| quantization: str | None = None | ||
| enable_prefix_caching: bool = False | ||
|
|
||
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.
why change from 0.02 to 0.5?
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.
Adjust the baseline based on the test results.