Skip to content

Commit 20f0197

Browse files
Update Zygote compat
1 parent a5b615e commit 20f0197

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/Documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- uses: julia-actions/setup-julia@latest
1616
with:
17-
version: '1.11'
17+
version: '1.10'
1818
- name: Install dependencies
19-
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate(); Pkg.add(["Symbolics"])'
19+
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
2020
- name: Build and deploy
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ FiniteDiff = "2"
1717
FiniteDifferences = "0.11, 0.12"
1818
Reexport = "1.1, 1.2"
1919
ReverseDiff = "1.8, 1.9"
20-
Zygote = "0.6"
20+
Zygote = "0.6, 0.7"
2121
julia = "1"
2222

2323
[extras]

docs/src/Operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The exported in-place operators include `GetGrad!(), GetHess!(), GetJac!()` and
4848

4949
## Differentiation Backend-Agnostic Programming
5050

51-
Essentially, the abstraction layer provided by **DerivableFunctions.jl** only requires the user to specify the "semantic" meaning of a given differentiation operation while allowing for flexible post hoc choice of backend as well as enabling symbolic pass through for the resulting computation.
51+
Essentially, the abstraction layer provided by [**DerivableFunctions.jl**](https://github.com/RafaelArutjunjan/DerivableFunctions.jl) only requires the user to specify the "semantic" meaning of a given differentiation operation while allowing for flexible post hoc choice of backend as well as enabling symbolic pass through for the resulting computation.
5252

5353
For example, when calculating differential-geometric quantities such as the Riemann or Ricci tensors, which depend on complicated combinations of up to second derivatives of the components of the metric tensor, a single implementation simultaneously provides a performant numerical implementation as well as allowing for analytical insight for simple examples.
5454
```julia

0 commit comments

Comments
 (0)