Rename parallelism to concurrency in Client and AxClient APIs#4923
Open
mgrange1998 wants to merge 2 commits intofacebook:mainfrom
Open
Rename parallelism to concurrency in Client and AxClient APIs#4923mgrange1998 wants to merge 2 commits intofacebook:mainfrom
mgrange1998 wants to merge 2 commits intofacebook:mainfrom
Conversation
…tch_utils Summary: Renames the `max_parallelism` parameter to `max_concurrency` across GenerationStep, GenerationNode, and the generation strategy dispatch utilities. Adds backward-compatible deprecated `max_parallelism` parameters with deprecation warnings where the public API is affected (`choose_generation_strategy`). Internal variable names (`sobol_parallelism`, `bo_parallelism`) are renamed to `sobol_concurrency`, `bo_concurrency` for consistency. Differential Revision: D92457714
…ok#4923) Summary: Pull Request resolved: facebook#4923 Renames the `parallelism` parameter to `concurrency` in `Client.run_trials()` and adds backward-compatible deprecated `max_parallelism` parameters in `AxClient.create_experiment()` and `AxClient.get_max_parallelism()` → `get_max_concurrency()`. Both include deprecation warnings guiding callers to use the new parameter names, with validation that old and new parameters are not specified simultaneously. Differential Revision: D93771849
e90fb76 to
dae8837
Compare
|
@mgrange1998 has exported this pull request. If you are a Meta employee, you can view the originating Diff in D93771849. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary: Renames the
parallelismparameter toconcurrencyinClient.run_trials()and adds backward-compatible deprecatedmax_parallelismparameters inAxClient.create_experiment()andAxClient.get_max_parallelism()→get_max_concurrency(). Both include deprecation warnings guiding callers to use the new parameter names, with validation that old and new parameters are not specified simultaneously.Differential Revision: D93771849