Skip to content

Commit

Permalink
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 0744025 commit 83c01fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Derivative/Caputo.jl
Original file line number Diff line number Diff line change
Expand Up @@ -298,10 +298,10 @@ function quadweights(n::T, N::T, α::P) where {T <: Integer, P <: Real}
end

function fracdiff(f::FunctionAndNumber,
α::T,
α::Real,
end_point::AbstractArray{P},
h::T,
::CaputoDiethelm) where {T <: Real, P <: Number}
h::Real,
::CaputoDiethelm) where {P <: Number}
result = map(x->fracdiff(f, α, x, h, CaputoDiethelm()), end_point)
return result
end
Expand Down

1 comment on commit 83c01fb

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark Results

Benchmark suite Current: 83c01fb Previous: 0744025 Ratio
fracdiff/cpu/Caputo/CaputoL1 42700 ns 43481 ns 0.98
fracdiff/cpu/Caputo/CaputoDiethelm 42689 ns 43492 ns 0.98
fracdiff/cpu/RiemannLiouville/RLDiffL1 44663 ns 44744 ns 1.00
fracdiff/cpu/RiemannLiouville/RLD 44672 ns 44723 ns 1.00

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.