Skip to content
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
3 changes: 0 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
ignore:
- dependency-name: "crate-ci/typos"
update-types: ["version-update:semver-patch", "version-update:semver-minor"]
- package-ecosystem: "julia"
directories:
- "/"
Expand Down
17 changes: 0 additions & 17 deletions .github/workflows/CompatHelper.yml

This file was deleted.

24 changes: 7 additions & 17 deletions .github/workflows/Downgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,10 @@ on:
jobs:
test:
if: false # Disabled: PrecompileTools compatibility. See #149 for details.
runs-on: ubuntu-latest
strategy:
matrix:
downgrade_mode: ['alldeps']
julia-version: ['1.10']
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v3
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-downgrade-compat@v2
with:
skip: Pkg,TOML
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
ALLOW_RERESOLVE: false
name: "Downgrade"
uses: "SciML/.github/.github/workflows/downgrade.yml@v1"
with:
julia-version: "1.10"
skip: "Pkg,TOML"
allow-reresolve: false
secrets: "inherit"
12 changes: 3 additions & 9 deletions .github/workflows/FormatCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@ on:

jobs:
runic:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v3
with:
version: '1'
- uses: fredrikekre/runic-action@v1
with:
version: '1'
name: "Runic"
uses: "SciML/.github/.github/workflows/runic.yml@v1"
secrets: "inherit"
10 changes: 3 additions & 7 deletions .github/workflows/SpellCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ on: [pull_request]

jobs:
typos-check:
name: Spell Check with Typos
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v6
- name: Check spelling
uses: crate-ci/typos@v1.18.0
name: "Spell Check with Typos"
uses: "SciML/.github/.github/workflows/spellcheck.yml@v1"
secrets: "inherit"
2 changes: 1 addition & 1 deletion src/algorithms/linear.jl
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function DiffEqBase.__solve(
)
end

# Ideally hook into existing sensitity dispatching
# Ideally hook into existing sensitivity dispatching
# Trouble with Zygote. The problem isn't the _concrete_solve_adjoint but rather something in the
# adjoint of the basic solve and `solve_up`. Probably promotion on the prob

Expand Down
2 changes: 1 addition & 1 deletion src/utilities.jl
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ end
maybe_add_Δ_slice!(Δz, Δsol_A, t) = nothing

# Don't add logpdf to observables unless provided
# TODO: check if this can be repalced with the following and if it has a performance regression for diagonal noise covariance
# TODO: check if this can be replaced with the following and if it has a performance regression for diagonal noise covariance
# ldiv!(Δz, observables_noise.Σ.chol, innovation[t])
# rmul!(Δlogpdf, Δz)
Base.@propagate_inbounds @inline function maybe_add_Δ_logpdf!(
Expand Down
Loading