Closed hmgaudecker closed 2 months ago
Check out this pull request on
See visual diffs & provide feedback on Jupyter Notebooks.
Powered by ReviewNB
Attention: Patch coverage is 92.59259%
with 8 lines
in your changes missing coverage. Please review.
Project coverage is 91.43%. Comparing base (
bbd4ce4
) to head (f04041d
). Report is 1 commits behind head on main.
Files with missing lines | Patch % | Lines |
---|---|---|
src/skillmodels/maximization_inputs.py | 90.12% | 8 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
For the record: The 8 lines of missed coverage are _get_jnp_params_vec
, which does not have tests. Does not seem to be an issue.
It looks like memory consumption of
loglike_and_grad
is rising about linearly in the number of observations (and probably also parameters) at present, making it the limiting factor for real-world applications. This PR aims at reducing peak memory usage.Table to keep track of mem usage of
pixi run mem-on-clean-repo
will be in MEMTRACKER.md. Delete upon merging.