Limitations

Sparsity patterns are conservative approximations

Sparsity patterns returned by SparseConnectivityTracer (SCT) can in some cases be overly conservative, meaning that they might contain "too many ones". If you observe an overly conservative pattern, please open a feature request so we know where to add more method overloads to increase the sparsity.

SCT's no-false-negatives policy

If you ever observe a sparsity pattern that contains too many zeros, we urge you to open a bug report!

Function must be composed of generic Julia functions

SCT can't trace through non-Julia code. However, if you know the sparsity pattern of an external, non-Julia function, you might be able to work around it by adding methods on SCT's tracer types.

Function types must be generic

When computing the sparsity pattern of a function, it must be written generically enough to accept numbers of type T<:Real as (or AbstractArray{<:Real}) as inputs.

Example: Overly restrictive type annotations

Let's see this mistake in action:

using SparseConnectivityTracer
detector = TracerSparsityDetector()

relu_bad(x::AbstractFloat) = max(zero(x), x)
outer_function_bad(xs) = sum(relu_bad, xs)

Since tracers and dual numbers are Real numbers and not AbstractFloats, relu_bad throws a MethodError:

julia> xs = [1.0, -2.0, 3.0];
julia> outer_function_bad(xs)4.0
julia> jacobian_sparsity(outer_function_bad, xs, detector)ERROR: MethodError: no method matching relu_bad(::SparseConnectivityTracer.GradientTracer{SparseConnectivityTracer.IndexSetGradientPattern{Int64, BitSet}}) Closest candidates are: relu_bad(::AbstractFloat) @ Main limitations.md:29

This is easily fixed by loosening type restrictions or adding an additional methods on Real:

relu_good(x) = max(zero(x), x)
outer_function_good(xs) = sum(relu_good, xs)
julia> jacobian_sparsity(outer_function_good, xs, detector)1×3 SparseArrays.SparseMatrixCSC{Bool, Int64} with 3 stored entries:
 1  1  1

Limited control flow

Only TracerLocalSparsityDetector supports comparison operators (<, ==, ...), indicator functions (iszero, iseven, ...) and control flow.

TracerSparsityDetector does not support any boolean functions and control flow (with the exception of ifelse). This might seem unintuitive but follows from our policy stated above: SCT guarantees conservative sparsity patterns. Using an approach based on operator-overloading, this means that global sparsity detection isn't allowed to hit any branching code. ifelse is the only exception, since it allows us to evaluate both branches.

Common control flow errors

By design, SCT will throw errors instead of returning wrong sparsity patterns. Common error messages include:

ERROR: TypeError: non-boolean [tracer type] used in boolean context
ERROR: Function [function] requires primal value(s).
A dual-number tracer for local sparsity detection can be used via `TracerLocalSparsityDetector`.
Why does TracerSparsityDetector not support control flow and comparisons?

Let us motivate the design decision above by a simple example function:

function f(x)
    if x[1] > x[2]
        return x[1]
    else
        return x[2]
    end
end

The desired global Jacobian sparsity pattern over the entire input domain $x \in \mathbb{R}^2$ is [1 1]. Two local sparsity patterns are possible: [1 0] for $\{x | x_1 > x_2\}$, [0 1] for $\{x | x_1 \le x_2\}$.

The local sparsity patterns of TracerLocalSparsityDetector are easy to compute using operator overloading by using dual numbers which contain primal values on which we can evaluate comparisons like >:

julia> using SparseConnectivityTracer
julia> jacobian_sparsity(f, [2, 1], TracerLocalSparsityDetector())1×2 SparseArrays.SparseMatrixCSC{Bool, Int64} with 1 stored entry: 1 ⋅
julia> jacobian_sparsity(f, [1, 2], TracerLocalSparsityDetector())1×2 SparseArrays.SparseMatrixCSC{Bool, Int64} with 1 stored entry: ⋅ 1

The global sparsity pattern is impossible to compute when code branches with an if-else condition, since we can only ever hit one branch during run-time. If we made comparisons like > return true or false, we'd get the local patterns [1 0] and [0 1] respectively. But SCT's policy is to guarantee conservative sparsity patterns, which means that "false positives" (ones) are acceptable, but "false negatives" (zeros) are not. In my our opinion, the right thing to do here is to throw an error:

julia> jacobian_sparsity(f, [1, 2], TracerSparsityDetector())ERROR: TypeError: non-boolean (SparseConnectivityTracer.GradientTracer{SparseConnectivityTracer.IndexSetGradientPattern{Int64, BitSet}}) used in boolean context

In some cases, we can work around this by using ifelse. Since ifelse is a method, it can evaluate "both branches" and take a conservative union of both resulting sparsity patterns:

julia> f(x) = ifelse(x[1] > x[2], x[1], x[2])f (generic function with 1 method)
julia> jacobian_sparsity(f, [1, 2], TracerSparsityDetector())1×2 SparseArrays.SparseMatrixCSC{Bool, Int64} with 2 stored entries: 1 1