Skip to content

Commit 5695294

Browse files
committed
SparseConnectivityTracer v1.1.0
1 parent 611e1fd commit 5695294

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SparseConnectivityTracer"
22
uuid = "9f842d2f-2579-4b1d-911e-f412cf18a3f5"
33
authors = ["Adrian Hill <gh@adrianhill.de>"]
4-
version = "1.1.0-DEV"
4+
version = "1.1.0"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ In fact, the functions `jacobian_sparsity` and `hessian_sparsity` are re-exporte
108108

109109
## Citation
110110

111-
If you use SparseConnectivityTracer in your research, please cite our preprint [*Sparser, Better, Faster, Stronger: Efficient Automatic Differentiation for Sparse Jacobians and Hessians*](https://arxiv.org/abs/2501.17737):
111+
If you use SparseConnectivityTracer in your research, please cite our TMLR paper [*Sparser, Better, Faster, Stronger: Efficient Automatic Differentiation for Sparse Jacobians and Hessians*](https://openreview.net/forum?id=GtXSN52nIW):
112112

113113
```bibtex
114114
@article{hill2025sparser,

docs/src/internals/how_it_works.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# [How SparseConnectivityTracer works](@id how-sct-works)
22

33
!!! tip "Read the paper"
4-
Please read our preprint describing SparseConnectivityTracer:
5-
[*Sparser, Better, Faster, Stronger: Efficient Automatic Differentiation for Sparse Jacobians and Hessians*](https://arxiv.org/abs/2501.17737).
4+
Please read our TMLR paper describing SparseConnectivityTracer:
5+
[*Sparser, Better, Faster, Stronger: Efficient Automatic Differentiation for Sparse Jacobians and Hessians*](https://openreview.net/forum?id=GtXSN52nIW).
66

77
!!! danger "Internals may change"
88
The developer documentation might refer to internals which can change without warning in a future release of SparseConnectivityTracer.

src/adtypes_interface.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ julia> hessian_sparsity(f, rand(4), detector)
8282
8383
## References
8484
85-
- A. Hill and G. Dalle (2025). [*"Sparser, Better, Faster, Stronger: Sparsity Detection for Efficient Automatic Differentiation"*](https://openreview.net/pdf?id=GtXSN52nIW)
85+
- A. Hill and G. Dalle (2025). [*"Sparser, Better, Faster, Stronger: Sparsity Detection for Efficient Automatic Differentiation"*](https://openreview.net/forum?id=GtXSN52nIW)
8686
- A. Hill, G. Dalle, A. Montoison (2025). [*"An Illustrated Guide to Automatic Sparse Differentiation"*](https://iclr-blogposts.github.io/2025/blog/sparse-autodiff/)
8787
"""
8888
struct TracerSparsityDetector{TG <: GradientTracer, TH <: HessianTracer} <:
@@ -129,7 +129,7 @@ julia> jacobian_sparsity(f, [1, 1], detector)
129129
130130
## References
131131
132-
- A. Hill and G. Dalle (2025). [*"Sparser, Better, Faster, Stronger: Sparsity Detection for Efficient Automatic Differentiation"*](https://openreview.net/pdf?id=GtXSN52nIW)
132+
- A. Hill and G. Dalle (2025). [*"Sparser, Better, Faster, Stronger: Sparsity Detection for Efficient Automatic Differentiation"*](https://openreview.net/forum?id=GtXSN52nIW)
133133
- A. Hill, G. Dalle, A. Montoison (2025). [*"An Illustrated Guide to Automatic Sparse Differentiation"*](https://iclr-blogposts.github.io/2025/blog/sparse-autodiff/)
134134
"""
135135
struct TracerLocalSparsityDetector{TG <: GradientTracer, TH <: HessianTracer} <:

0 commit comments

Comments
 (0)