-
Notifications
You must be signed in to change notification settings - Fork 41
Allow combination of ESS and automatic scaling #2032
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
Open
f0uriest
wants to merge
45
commits into
master
Choose a base branch
from
rc/auto_scale
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+332
−222
Open
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
35a1e42
Add Exponential Spectral Scaling (ESS)
3d2eb18
Add ess when using OmnigenousField as Optimizable as well
2b30169
Merge branch 'master' into cj/ESS
rahulgaur104 ce2f670
Merge branch 'master' into cj/ESS
dpanici e6eeffb
Generalize spectral scale creation logic
b53bd35
Generalize x_scale construction beyond fixed-boundary assumption
41ea327
Fix x_scale handling for full state vector size and ProximalProjectio…
102f666
Merge branch 'master' into cj/ESS
dpanici acf6fec
Merge branch 'master' into cj/ESS
dpanici be74ab7
Merge branch 'master' into cj/ESS
dpanici 0268745
Merge branch 'master' into cj/ESS
dpanici 67003a9
add changes for ESS - Support ESS for Equilibrium and FourierRZToroid…
15e55f6
Merge branch 'master' into cj/ESS
dpanici 824c944
Add logic for handling pytree x_scale
f0uriest e18c7e4
Update changelog
f0uriest f38ae4b
Merge branch 'rc/xscale' into cj/ESS
f0uriest cb4a9f0
Add ess helper to optimizable classes
f0uriest 2f0c3d5
Merge branch 'master' into cj/ESS
f0uriest f6fbf6b
Merge branch 'master' into rc/xscale
f0uriest 8043752
Ensure x_scale matches with order of things in objective
f0uriest 473b80b
fix test
f0uriest ee78457
Merge branch 'rc/xscale' into cj/ESS
f0uriest bc6112f
Fix test
f0uriest 5fb25db
Merge branch 'master' into cj/ESS
f0uriest 6e41b61
Fix bug in x_scale for augmented lagrangian methods
f0uriest b22ccf2
Return unprojected x_scale from optimize method
f0uriest 583f60a
Add test for getting correct ess scale
f0uriest 3effcbd
Merge branch 'master' into cj/ESS
f0uriest 16887e8
Merge branch 'master' into cj/ESS
f0uriest 85b9e63
Add option to combine user x_scale and automatic scaling
f0uriest 7011a46
Clean up docstrings for ess stuff
f0uriest 973d557
Merge branch 'master' into cj/ESS
YigitElma c8c650a
Merge branch 'cj/ESS' into rc/auto_scale
f0uriest 7710039
Merge branch 'master' into rc/auto_scale
f0uriest ea13bd1
Update auto scaling API
f0uriest f4d40c7
Merge branch 'master' into rc/auto_scale
ddudt f9b87dd
Allow choosing default value for non-ess variables
f0uriest f585867
Don't terminate on ftol or xtol if last step hit trust region boundary
f0uriest bc2c8b9
Allow combining automatic x_scale with user x_scale
f0uriest acf3955
Fix isinstance
f0uriest 36021a1
Revert "Don't terminate on ftol or xtol if last step hit trust region…
f0uriest 95d6300
Merge branch 'master' into rc/auto_scale
f0uriest 641dc21
Fix get_ess test
f0uriest 6330944
Fix projection of x_scale
f0uriest 33644ad
Merge branch 'master' into rc/auto_scale
dpanici File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
example use to use auto for just lambda:
x_scale = get_ess_scale(eq)
x_scale["L_lmn"] = np.zeros_like(x_scale["L_lmn"])