Skip to content

Commit

Permalink
Add more benchmarks
Browse files Browse the repository at this point in the history
Signed-off-by: ErikQQY <2283984853@qq.com>
  • Loading branch information
ErikQQY committed Apr 7, 2024
1 parent 82a0b46 commit 5c57d5e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions bench/runbenchmarks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ SUITE["Caputo"]["CaputoDiethelm"] = @benchmarkable fracdiff(testf, 0.5, 1, 0.01,
SUITE["Caputo"]["CaputoTrap"] = @benchmarkable fracdiff(testf, 0.5, 1, 0.01, CaputoTrap())
SUITE["Caputo"]["CaputoL1"] = @benchmarkable fracdiff(testf, 0.5, 1, 0.01, CaputoL1())

SUITE["RiemannLiouville"]["RLDiffL1"] = @benchmarkable fracdiff(testf, 0.5, 1, 0.01, RLDiffL1())
SUITE["RiemannLiouville"]["RLD"] = @benchmarkable fracdiff(testf, 0.5, 1, 0.01, RLD())
SUITE["RiemannLiouville"]["RLG1"] = @benchmarkable fracdiff(testf, 0.5, 1, 0.01, RLG1())

SUITE["GrunwaldLetnikov"]["GLDirect"] = @benchmarkable fracdiff(testf, 0.5, 1, 0.01, GLDirect())
SUITE["GrunwaldLetnikov"]["GLFiniteDifference"] = @benchmarkable fracdiff(testf, 0.5, 1, 0.01, GLFiniteDifference())

BenchmarkTools.tune!(SUITE)
results = BenchmarkTools.run(SUITE; verbose=true)

Expand Down

0 comments on commit 5c57d5e

Please sign in to comment.