-
Notifications
You must be signed in to change notification settings - Fork 26
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
Dd/optimizable #956
Dd/optimizable #956
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #956 +/- ##
==========================================
+ Coverage 94.87% 94.94% +0.07%
==========================================
Files 87 87
Lines 21909 21699 -210
==========================================
- Hits 20786 20603 -183
+ Misses 1123 1096 -27
|
| benchmark_name | dt(%) | dt(s) | t_new(s) | t_old(s) |
| -------------------------------------- | ---------------------- | ---------------------- | ---------------------- | ---------------------- |
test_build_transform_fft_lowres | +0.73 +/- 5.10 | +3.71e-03 +/- 2.60e-02 | 5.13e-01 +/- 2.3e-02 | 5.10e-01 +/- 1.2e-02 |
test_build_transform_fft_midres | +0.84 +/- 3.01 | +4.93e-03 +/- 1.76e-02 | 5.89e-01 +/- 1.7e-02 | 5.84e-01 +/- 6.1e-03 |
test_build_transform_fft_highres | +1.93 +/- 2.22 | +1.89e-02 +/- 2.17e-02 | 9.97e-01 +/- 1.8e-02 | 9.78e-01 +/- 1.3e-02 |
test_equilibrium_init_lowres | +3.34 +/- 4.30 | +1.28e-01 +/- 1.64e-01 | 3.95e+00 +/- 1.3e-01 | 3.82e+00 +/- 9.7e-02 |
test_equilibrium_init_medres | +4.86 +/- 3.86 | +2.07e-01 +/- 1.64e-01 | 4.46e+00 +/- 1.5e-01 | 4.25e+00 +/- 7.5e-02 |
test_equilibrium_init_highres | +0.17 +/- 4.26 | +1.02e-02 +/- 2.60e-01 | 6.13e+00 +/- 8.6e-02 | 6.12e+00 +/- 2.5e-01 |
test_objective_compile_dshape_current | -0.17 +/- 2.71 | -5.93e-03 +/- 9.68e-02 | 3.57e+00 +/- 6.7e-02 | 3.58e+00 +/- 7.0e-02 |
test_objective_compile_atf | +0.03 +/- 3.96 | +1.83e-03 +/- 2.78e-01 | 7.02e+00 +/- 1.9e-01 | 7.02e+00 +/- 2.0e-01 |
test_objective_compute_dshape_current | +0.94 +/- 3.00 | +3.94e-05 +/- 1.26e-04 | 4.23e-03 +/- 1.2e-04 | 4.19e-03 +/- 5.1e-05 |
test_objective_compute_atf | -3.34 +/- 2.45 | -6.06e-04 +/- 4.45e-04 | 1.76e-02 +/- 3.5e-04 | 1.82e-02 +/- 2.8e-04 |
test_objective_jac_dshape_current | -7.67 +/- 8.69 | -3.36e-03 +/- 3.80e-03 | 4.04e-02 +/- 1.8e-03 | 4.37e-02 +/- 3.3e-03 |
test_objective_jac_atf | +0.91 +/- 3.81 | +1.65e-02 +/- 6.91e-02 | 1.83e+00 +/- 5.4e-02 | 1.81e+00 +/- 4.4e-02 |
test_perturb_1 | +9.49 +/- 4.16 | +1.10e+00 +/- 4.83e-01 | 1.27e+01 +/- 3.5e-01 | 1.16e+01 +/- 3.4e-01 |
test_perturb_2 | +7.40 +/- 3.11 | +1.21e+00 +/- 5.09e-01 | 1.75e+01 +/- 2.8e-01 | 1.63e+01 +/- 4.2e-01 |
test_proximal_jac_atf | +1.17 +/- 1.59 | +8.27e-02 +/- 1.12e-01 | 7.14e+00 +/- 7.6e-02 | 7.06e+00 +/- 8.3e-02 |
-test_proximal_freeb_compute | +47.71 +/- 1.83 | +6.19e-02 +/- 2.38e-03 | 1.92e-01 +/- 2.2e-03 | 1.30e-01 +/- 8.8e-04 |
test_proximal_freeb_jac | +2.11 +/- 1.38 | +1.48e-01 +/- 9.71e-02 | 7.16e+00 +/- 7.7e-02 | 7.01e+00 +/- 5.9e-02 | |
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.
Add ability to fix the parameter of a single member of an OptimizableCollection (either with FixParameter, or FixCollectionParameters)
Look at coil objectives for pytree stuff for nested lists |
Tutorial and see how it breaks @dpanici |
add error checking for |
…into dd/optimizable
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.
did this actually change?
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.
Yes, I think it was the same change I made to test_freeb_axisym
to make sure the R_modes
input to FixBoundaryR
is a 2D array, not a tuple
Resolves #860
FixParameter
to work for anOptimizableCollection
so collections (like coil sets) can be constrained in optimizations._FixedObjective
and_FixProfile
to inherit fromFixParameter
instead for many of the linear objectives, to reduce redundant code.FixCurveShift
andFixCurveRotation
tomaybe_add_self_consistency
To-Do:
_FixedObjective
and_FixProfile
withFixParameter