feat: allow SymbolicCompilerPasses (SCP) passes during code generation#4191
Merged
AayushSabharwal merged 11 commits intoSciML:masterfrom Jan 29, 2026
Merged
feat: allow SymbolicCompilerPasses (SCP) passes during code generation#4191AayushSabharwal merged 11 commits intoSciML:masterfrom
AayushSabharwal merged 11 commits intoSciML:masterfrom
Conversation
Member
Author
|
The API can now work as: resolve_optimize_option(0) == resolve_optimize_option(false) == resolve_optimize_option(:none) == nothing # no optimization
resolve_optimize_option(1) == resolve_optimize_option(true) == resolve_optimize_option(:basic) == SCP_BASIC
resolve_optimize_option(2) == resolve_optimize_option(:aggressive) == SCP_AGGRESSIVESo users can pass ODEProblem(...;
optimize = 0/1/2,
true/false,
:basic/:aggressive/:none,
MTK.SCP_BASIC/AGGRESSIVE/ vector of rules) |
Member
Author
|
Bump |
Member
Author
|
Bikeshedding: What should the keyword be called? Code gets optimized regardless based on Julia's optimization levels etc, so a more appropriate name might be |
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.
Checklist
contributor guidelines, in particular the SciML Style Guide and
COLPRAC.
Additional context
Adds SymbolicCompilerPasses as a dep to allow passing optimization levels for array functions during symbolic code generation. The passes are an opt-in for now, and can be passed via the
optimizekwarg toODEProblemsince JuliaSymbolics/Symbolics.jl#1755.Add any other context about the problem here.