Skip to content

Commit 37963e0

Browse files
authored
Merge pull request #109 from ErikQQY/qqy/triger_bench
Trigger benchmarks
2 parents 48be112 + c6afbc4 commit 37963e0

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/Benchmark.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ concurrency:
1515

1616
jobs:
1717
benchmark:
18+
permissions: write-all
1819
runs-on: ubuntu-latest
1920
steps:
2021
- uses: actions/checkout@v4

src/fode/implicit_pi_trapzoid.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ end
143143

144144
function SciMLBase.solve!(cache::PITrapCache{iip, T}) where {iip, T}
145145
@unpack prob, alg, mesh, u0, order, y, fy, r, N, Nr, Qr, NNr, an, a0, halpha2, abstol, index_fft, an_fft, kwargs = cache
146-
t0 = mesh[1]
147146
tfinal = mesh[end]
148147
PITrap_triangolo(cache, 1, r-1)
149148

src/fode/pi_pece.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ end
152152

153153
function SciMLBase.solve!(cache::PECECache{iip, T}) where {iip, T}
154154
@unpack prob, alg, mesh, u0, order, y, fy, zn_pred, zn_corr, r, N, Nr, Qr, NNr, an, bn, a0, halpha1, halpha2, mu, abstol, index_fft, an_fft, bn_fft, kwargs = cache
155-
t0 = mesh[1]; tfinal = mesh[N+1]
155+
tfinal = mesh[N+1]
156156
ABM_triangolo(cache, 1, r-1)
157157

158158
# Main process of computation by means of the FFT algorithm

0 commit comments

Comments
 (0)