Skip to content

Commit 052a6eb

Browse files
authored
Merge pull request #8 from lockwo/Owen/fix-docs
fix docs
2 parents 326b219 + d69b201 commit 052a6eb

File tree

5 files changed

+35
-34
lines changed

5 files changed

+35
-34
lines changed

.github/workflows/release.yml

+25-25
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
name: Release
1+
# name: Release
22

3-
on:
4-
push:
5-
branches:
6-
- main
3+
# on:
4+
# push:
5+
# branches:
6+
# - main
77

8-
jobs:
9-
build:
10-
runs-on: ubuntu-latest
11-
steps:
12-
- name: Release
13-
uses: patrick-kidger/action_update_python_project@v2
14-
with:
15-
python-version: "3.11"
16-
test-script: |
17-
cp -r ${{ github.workspace }}/test ./test
18-
cp ${{ github.workspace }}/pyproject.toml ./pyproject.toml
19-
python -m pip install -r ./test/requirements.txt
20-
python -m test
21-
pypi-token: ${{ secrets.pypi_token }}
22-
github-user: lockwo
23-
github-token: ${{ github.token }}
24-
email-user: ${{ secrets.email_user }}
25-
email-token: ${{ secrets.email_token }}
26-
email-server: ${{ secrets.email_server }}
27-
email-target: ${{ secrets.email_target }}
8+
# jobs:
9+
# build:
10+
# runs-on: ubuntu-latest
11+
# steps:
12+
# - name: Release
13+
# uses: patrick-kidger/action_update_python_project@v2
14+
# with:
15+
# python-version: "3.11"
16+
# test-script: |
17+
# cp -r ${{ github.workspace }}/test ./test
18+
# cp ${{ github.workspace }}/pyproject.toml ./pyproject.toml
19+
# python -m pip install -r ./test/requirements.txt
20+
# python -m test
21+
# pypi-token: ${{ secrets.pypi_token }}
22+
# github-user: lockwo
23+
# github-token: ${{ github.token }}
24+
# email-user: ${{ secrets.email_user }}
25+
# email-token: ${{ secrets.email_token }}
26+
# email-server: ${{ secrets.email_server }}
27+
# email-target: ${{ secrets.email_target }}

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
<h1 align='center'>Diffrax Extensions</h1>
22
<h2 align='center'>(Extensions to) Diffrax: Numerical differential equation solvers in JAX. Autodifferentiable and GPU-capable.</h2>
33

4-
Diffrax Extensions is a strict superset of [Diffrax](https://github.com/patrick-kidger/diffrax). Everything in diffrax is included in diffrax extensions (that is to say, any code you have `import diffrax` in, you can replace with `import diffrax_extensions as diffrax` and it will work). However, diffrax extensions (as the name implies) contains features beyond that of diffrax. These currently include:
4+
Diffrax Extensions is a strict superset of [Diffrax](https://github.com/patrick-kidger/diffrax). Everything in diffrax is included in diffrax extensions (that is to say, any code you have `import diffrax` in, you can replace with `import diffrax_extensions as diffrax` and it will work). However, diffrax extensions (as the name implies) contains features beyond that of diffrax. The current feature list includes:
55

6-
- Additional SDE tooling
6+
- Additional SDE tooling:
7+
- Converting Stratonovich to Ito SDEs
78

89
and will include:
910

1011
- Additional solvers
11-
- Additional levy area approximation
12+
- Additional levy area approximations
1213

1314
The following is required per the Apache 2.0 license. The original copyright notice of diffrax is available here: https://github.com/patrick-kidger/diffrax/blob/main/LICENSE#L189. A copy of the license is available in the `DIFFRAX_LICENSE` file. The significant changes made to the code that we are republishing with are available above. Diffrax does not contain a NOTICE file.
1415

diffrax_extensions/_solver/foster_langevin_srk.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ class AbstractFosterLangevinSRK(
116116
$\gamma , u \in \mathbb{R}^{d \times d}$ are diagonal matrices governing
117117
the friction and the damping of the system.
118118
119-
Solvers which inherit from this class include [`diffrax.ALIGN`][],
120-
[`diffrax.ShOULD`][], and [`diffrax.QUICSORT`][].
119+
Solvers which inherit from this class include [`diffrax_extensions.ALIGN`][],
120+
[`diffrax_extensions.ShOULD`][], and [`diffrax_extensions.QUICSORT`][].
121121
"""
122122

123123
term_structure = MultiTerm[

docs/api/solvers/abstract_solvers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,6 @@ In addition [`diffrax_extensions.AbstractSolver`][] has several subclasses that
9898
members:
9999
- __init__
100100

101-
::: diffrax.AbstractFosterLangevinSRK
101+
::: diffrax_extensions.AbstractFosterLangevinSRK
102102
selection:
103103
members: false

docs/api/solvers/sde_solvers.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -139,17 +139,17 @@ cannot be used for any other SDEs. They only accept special terms as described i
139139
[Underdamped Langevin terms](../terms.md#underdamped-langevin-terms) section.
140140
For an example of their usage, see the [Underdamped Langevin example](../../examples/underdamped_langevin_example.ipynb).
141141

142-
::: diffrax.ALIGN
142+
::: diffrax_extensions.ALIGN
143143
selection:
144144
members:
145145
- __init__
146146

147-
::: diffrax.ShOULD
147+
::: diffrax_extensions.ShOULD
148148
selection:
149149
members:
150150
- __init__
151151

152-
::: diffrax.QUICSORT
152+
::: diffrax_extensions.QUICSORT
153153
selection:
154154
members:
155155
- __init__

0 commit comments

Comments
 (0)