Automatic/algorithmic differentiation (AD)

SummationByPartsOperators.jl is written using generic Julia code whenever possible. This means that standard AD tools just work. For example, computing the Jacobian using ForwardDiff.jl is possible using the following code.

julia> using SummationByPartsOperators, ForwardDiff

julia> D = periodic_derivative_operator(derivative_order = 1, accuracy_order = 2,
                                        xmin = 0.0, xmax = 1.0, N = 8)
Periodic first-derivative operator of order 2 on a grid in [0.0, 1.0] using 8 nodes,
stencils with 1 nodes to the left, 1 nodes to the right, and coefficients of Fornberg (1998)
  Calculation of Weights in Finite Difference Formulas.
  SIAM Rev. 40.3, pp. 685-691.

julia> u = rand(size(D, 2));

julia> J = ForwardDiff.jacobian(u -> D * u, u)
8×8 Matrix{Float64}:
  0.0   4.0   0.0   0.0   0.0   0.0   0.0  -4.0
 -4.0   0.0   4.0   0.0   0.0   0.0   0.0   0.0
  0.0  -4.0   0.0   4.0   0.0   0.0   0.0   0.0
  0.0   0.0  -4.0   0.0   4.0   0.0   0.0   0.0
  0.0   0.0   0.0  -4.0   0.0   4.0   0.0   0.0
  0.0   0.0   0.0   0.0  -4.0   0.0   4.0   0.0
  0.0   0.0   0.0   0.0   0.0  -4.0   0.0   4.0
  4.0   0.0   0.0   0.0   0.0   0.0  -4.0   0.0

julia> J ≈ Matrix(D)
true

This works of course also for non-periodic SBP operators, e.g.,

julia> using SummationByPartsOperators, ForwardDiff

julia> D = derivative_operator(MattssonNordström2004(),
                               derivative_order = 1, accuracy_order = 2,
                               xmin = 0.0, xmax = 1.0, N = 8)
SBP first-derivative operator of order 2 on a grid in [0.0, 1.0] using 8 nodes
and coefficients of Mattsson, Nordström (2004)
  Summation by parts operators for finite difference approximations of second
    derivatives.
  Journal of Computational Physics 199, pp. 503-540.

julia> u = rand(size(D, 2));

julia> J = ForwardDiff.jacobian(u -> D * u, u)
8×8 Matrix{Float64}:
 -7.0   7.0   0.0   0.0   0.0   0.0   0.0  0.0
 -3.5   0.0   3.5   0.0   0.0   0.0   0.0  0.0
  0.0  -3.5   0.0   3.5   0.0   0.0   0.0  0.0
  0.0   0.0  -3.5   0.0   3.5   0.0   0.0  0.0
  0.0   0.0   0.0  -3.5   0.0   3.5   0.0  0.0
  0.0   0.0   0.0   0.0  -3.5   0.0   3.5  0.0
  0.0   0.0   0.0   0.0   0.0  -3.5   0.0  3.5
  0.0   0.0   0.0   0.0   0.0   0.0  -7.0  7.0

julia> J ≈ Matrix(D)
true

However, this does not work for Fourier derivative operators - and all other operators involving an FFT - since FFTW.jl cannot handle dual numbers and a simple reinterpret trick does also not help since FFTW.jl requires unit strides.

Jacobian-vector products

There is a nat trick that you can use if you are only interested in Jacobian-vector products. ForwardDiff.jl does not offer such a functionality at the time of writing, but Simon Byrne suggested the following implementation.

using SummationByPartsOperators, ForwardDiff, StructArrays

function StructDual(x::AbstractVector{T}, w::AbstractVector{T}) where {T}
  @assert length(x) == length(w)
  # This was the original suggestion. However, it is currently not stable
  # under broadcasting. Thus, we use a slightly different version.
  # partials = StructArray{ForwardDiff.Partials{1, T}}(
  #     (StructArray{Tuple{T}}(
  #         (w,)
  #     ),)
  # )
  partials = reinterpret(reshape, ForwardDiff.Partials{1, T}, w)
  duals = StructArray{ForwardDiff.Dual{Nothing, T, 1}}((x, partials))
  return duals
end

function ForwardDiff.value(dx::StructArray{D}) where {D <: ForwardDiff.Dual}
  return dx.value
end

function ForwardDiff.partials(dx::StructArray{<: ForwardDiff.Dual{Tag, T, 1}}, i) where {Tag, T}
  # This was the original suggestion. We need to update it (see above).
  # return getproperty(dx.partials.values, i)
  @assert i == 1
  return reinterpret(reshape, T, dx.partials)
end

You can use it as follows to compute the Jacobian-vector product

\[J_f(u) \cdot v\]

for the function $f$ given by

\[f(u) = D u.\]

D = fourier_derivative_operator(xmin = 0.0, xmax = 1.0, N = 8)

u = randn(size(D, 2)); # the point `u` where we want to compute the derivative
v = randn(size(D, 2)); # the direction `v` in which we want to compute the derivative
u_v = StructDual(u, v); # combined StructArray containing the value and direction

f_df = D * u_v # compute the function value and its derivative

@assert ForwardDiff.value(f_df) ≈ D * u

@assert ForwardDiff.partials(f_df, 1) ≈ D * v # the Jacobian of `f(u) = D * u` is `D`

You can of course also use this with nonlinear functions, e.g.,

f(u, D) = u .* (D * (u.^2))

f_df = f(u_v, D)
8-element StructArray(::Vector{Float64}, ::Vector{ForwardDiff.Partials{1, Float64}}) with eltype ForwardDiff.Dual{Nothing, Float64, 1}:
  Dual{Nothing}(-8.566223157269704,26.927505413745315)
  Dual{Nothing}(-3.955850847179871,-21.212822792865474)
 Dual{Nothing}(-20.200526639754568,-3.8723588363538415)
  Dual{Nothing}(-7.496079273968592,-39.53680421947323)
   Dual{Nothing}(6.389117317092844,-72.55632059941662)
 Dual{Nothing}(-31.357568528467255,-40.23524410726556)
  Dual{Nothing}(29.95389833431597,-50.1630264692104)
   Dual{Nothing}(5.957811938952504,19.895754530778895)

The Jacobian of this function is

using LinearAlgebra

J = Diagonal(D * u.^2) + 2 .* u .* Matrix(D) * Diagonal(u)

@assert ForwardDiff.value(f_df) ≈ f(u, D)

@assert ForwardDiff.partials(f_df, 1) ≈ J * v

Reproducibility

These results were obtained using the following versions.

using InteractiveUtils
versioninfo()

using Pkg
Pkg.status(["SummationByPartsOperators", "ForwardDiff", "StructArrays"],
           mode=PKGMODE_MANIFEST)
Julia Version 1.6.7
Commit 3b76b25b64 (2022-07-19 15:11 UTC)
Platform Info:
  OS: Linux (x86_64-pc-linux-gnu)
  CPU: AMD EPYC 7763 64-Core Processor
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-11.0.1 (ORCJIT, generic)
Environment:
  JULIA_PKG_SERVER_REGISTRY_PREFERENCE = eager
      Status `~/work/SummationByPartsOperators.jl/SummationByPartsOperators.jl/docs/Manifest.toml`
  [f6369f11] ForwardDiff v0.10.36
  [09ab397b] StructArrays v0.6.18
  [9f78cca6] SummationByPartsOperators v0.5.60 `~/work/SummationByPartsOperators.jl/SummationByPartsOperators.jl`