Skip to content

Commit 8392599

Browse files
GodotMisogiGodotMisogi
authored andcommitted
KenCarp low tol kinda working on KdV pseudo-spectral
1 parent 667a11b commit 8392599

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

benchmarks/SimpleHandwrittenPDE/kdv_spectral_wpd.jmd

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,25 +86,25 @@ plt = heatmap(xs, tslices, ys', xlabel = "x", ylabel = "t")
8686

8787

8888
```julia
89-
abstols = 0.1 .^ (7:10)
90-
reltols = 0.1 .^ (4:7)
89+
abstols = 0.1 .^ (8:10)
90+
reltols = 0.1 .^ (5:7)
9191
setups = [
9292
Dict(:alg => KenCarp3()),
93-
# Dict(:alg => KenCarp4()),
93+
Dict(:alg => KenCarp4()),
9494
# Dict(:alg => KenCarp5()),
9595
Dict(:alg => KenCarp3(linsolve=KrylovJL_GMRES())),
96-
# Dict(:alg => KenCarp4(linsolve=KrylovJL_GMRES())),
96+
Dict(:alg => KenCarp4(linsolve=KrylovJL_GMRES())),
9797
# Dict(:alg => KenCarp5(linsolve=KrylovJL_GMRES())),
9898
Dict(:alg => ARKODE(Sundials.Implicit(), order=3, linear_solver=:GMRES)),
9999
Dict(:alg => ARKODE(Sundials.Implicit(), order=4, linear_solver=:GMRES)),
100100
Dict(:alg => ARKODE(Sundials.Implicit(), order=5, linear_solver=:GMRES)),
101101
]
102102
labels = hcat(
103103
"KenCarp3",
104-
# "KenCarp4",
104+
"KenCarp4",
105105
# "KenCarp5",
106106
"KenCarp3 (Krylov)",
107-
# "KenCarp4 (Krylov)",
107+
"KenCarp4 (Krylov)",
108108
# "KenCarp5 (Krylov)",
109109
"ARKODE3 (Krylov)",
110110
"ARKODE4 (Krylov)",

0 commit comments

Comments
 (0)