Skip to content
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

Preprint -> published article #70

Merged
merged 2 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions checkpoint_schedules/mixed.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,13 @@ class MixedCheckpointSchedule(CheckpointSchedule):
Notes
-----
Assumes that the data required to restart the forward has the same size as
the data required to advance the adjoint over a step. An updated version of
the algorithm described in [1].
the data required to advance the adjoint over a step. Described in [1].
This is a offline checkpointing strategy, one adjoint calculation
permitted.

[1] Maddison, J. R. (2023). On the implementation of checkpointing with
high-level algorithmic differentiation. arXiv preprint arXiv:2305.09568.
DOI: 10.48550/arXiv.2305.09568
[1] Maddison, J. R. (2024). Step-based checkpointing with high-level
algorithmic differentiation, Journal of Computational Science 82, 102405,
DOI: https://doi.org/10.1016/j.jocs.2024.102405
"""

def __init__(self, max_n, snapshots, *, storage=StorageType.DISK):
Expand Down
2 changes: 1 addition & 1 deletion docs/notebooks/tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@
"\n",
"[5] Herrmann, J. and Pallez (Aupy), G. (2020). H-Revolve: a framework for adjoint computation on synchronous hierarchical platforms. ACM Transactions on Mathematical Software (TOMS), 46(2), 1-25. DOI: https://doi.org/10.1145/3378672.\n",
"\n",
"[6] Maddison, J. R. (2023). On the implementation of checkpointing with high-level algorithmic differentiation. arXiv preprint arXiv:2305.09568. https://doi.org/10.48550/arXiv.2305.09568.\n",
"[6] Maddison, J. R. (2024). Step-based checkpointing with high-level algorithmic differentiation, Journal of Computational Science 82, 102405, DOI: https://doi.org/10.1016/j.jocs.2024.102405.\n",
"\n",
"[7] Pringle, G. C., Jones, D. C., Goswami, S., Narayanan, S. H. K., and Goldberg, D. (2016). Providing the ARCHER community with adjoint modelling tools for high-performance oceanographic and cryospheric computation. https://nora.nerc.ac.uk/id/eprint/516314.\n",
"\n",
Expand Down
2 changes: 1 addition & 1 deletion docs/source/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ References

[5] Herrmann, J. and Pallez (Aupy), G. (2020). H-Revolve: a framework for adjoint computation on synchronous hierarchical platforms. ACM Transactions on Mathematical Software (TOMS), 46(2), 1-25. DOI: 10.1145/3378672.

[6] Maddison, J. R. (2023). On the implementation of checkpointing with high-level algorithmic differentiation. arXiv preprint arXiv:2305.09568. 10.48550/arXiv.2305.09568.
[6] Maddison, J. R. (2024). Step-based checkpointing with high-level algorithmic differentiation, Journal of Computational Science 82, 102405, DOI: https://doi.org/10.1016/j.jocs.2024.102405.

[7] Pringle, G. C., Jones, D. C., Goswami, S., Narayanan, S. H. K., and Goldberg, D. (2016). Providing the ARCHER community with adjoint modelling tools for high-performance oceanographic and cryospheric computation. https://nora.nerc.ac.uk/id/eprint/516314.

Expand Down
Loading