config: Hide compiler parameter settings from users#834
Open
aviatesk wants to merge 1 commit into
Open
Conversation
Compiler `InferenceParams` and `OptimizationParams` keywords are no longer accepted as public JET configurations. Calls such as `report_call(...; max_methods=1)` and `report_opt(...; inlining=false)` now fail with `JETConfigError` instead of mutating compiler internals through the user-facing config surface. Remove those compiler parameters from `GENERAL_CONFIGURATIONS` and the documentation. Analyzer constructors now validate the public configuration set before building `AnalyzerState`, while `JETAnalyzer` keeps its internal compiler-parameter defaults explicitly. This is part of the `0.12.0` minor version bump. `test_jetanalyzer` passed; `test_optanalyzer` was started but interrupted by the user before completion. Co-Authored-By: GPT-5.5 <noreply@openai.com>
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #834 +/- ##
==========================================
- Coverage 84.06% 84.02% -0.04%
==========================================
Files 12 12
Lines 3162 3168 +6
==========================================
+ Hits 2658 2662 +4
- Misses 504 506 +2 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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.
Compiler
InferenceParamsandOptimizationParamskeywords are no longer accepted as public JET configurations. Calls such asreport_call(...; max_methods=1)andreport_opt(...; inlining=false)now fail withJETConfigErrorinstead of mutating compiler internals through the user-facing config surface.Remove those compiler parameters from
GENERAL_CONFIGURATIONSand the documentation. Analyzer constructors now validate the public configuration set before buildingAnalyzerState, whileJETAnalyzerkeeps its internal compiler-parameter defaults explicitly.This is part of the
0.12.0minor version bump.test_jetanalyzerpassed;test_optanalyzerwas started but interrupted by the user before completion.