In mathematics and computer algebra, automatic differentiation (auto-differentiation, autodiff, or AD), also called algorithmic differentiation, computational differentiation,[1] [2] is a set of techniques to evaluate the partial derivative of a function specified by a computer program.
Automatic differentiation exploits the fact that every computer calculation, no matter how complicated, executes a sequence of elementary arithmetic operations (addition, subtraction, multiplication, division, etc.) and elementary functions (exp, log, sin, cos, etc.). By applying the chain rule repeatedly to these operations, partial derivatives of arbitrary order can be computed automatically, accurately to working precision, and using at most a small constant factor of more arithmetic operations than the original program.
Automatic differentiation is distinct from symbolic differentiation and numerical differentiation. Symbolic differentiation faces the difficulty of converting a computer program into a single mathematical expression and can lead to inefficient code. Numerical differentiation (the method of finite differences) can introduce round-off errors in the discretization process and cancellation. Both of these classical methods have problems with calculating higher derivatives, where complexity and errors increase. Finally, both of these classical methods are slow at computing partial derivatives of a function with respect to many inputs, as is needed for gradient-based optimization algorithms. Automatic differentiation solves all of these problems.
Automatic differentiation is particularly important in the field of machine learning. For example, it allows one to implement backpropagation in a neural network without a manually-computed derivative.
Fundamental to automatic differentiation is the decomposition of differentials provided by the chain rule of partial derivatives of composite functions. For the simple compositionthe chain rule gives
Usually, two distinct modes of automatic differentiation are presented.
Forward accumulation specifies that one traverses the chain rule from inside to outside (that is, first compute
\partialw1/\partialx
\partialw2/\partialw1
\partialy/\partialw2
\partialy/\partialw2
\partialw2/\partialw1
\partialw1/\partialx
\partialwi | |
\partialx |
=
\partialwi | |
\partialwi-1 |
\partialwi-1 | |
\partialx |
w3=y
\partialy | |
\partialwi |
=
\partialy | |
\partialwi+1 |
\partialwi+1 | |
\partialwi |
w0=x
The value of the partial derivative, called seed, is propagated forward or backward and is initially
\partialx | |
\partialx |
=1
\partialy | |
\partialy |
=1
x1,x2,...,xn
\partialx1 | |
\partialx1 |
=1
\partialx2 | |
\partialx1 |
=...=
\partialxn | |
\partialx1 |
=0
Which of these two types should be used depends on the sweep count. The computational complexity of one sweep is proportional to the complexity of the original code.
Backpropagation of errors in multilayer perceptrons, a technique used in machine learning, is a special case of reverse accumulation.
Forward accumulation was introduced by R.E. Wengert in 1964. According to Andreas Griewank, reverse accumulation has been suggested since the late 1960s, but the inventor is unknown.[3] Seppo Linnainmaa published reverse accumulation in 1976.[4]
In forward accumulation AD, one first fixes the independent variable with respect to which differentiation is performed and computes the derivative of each sub-expression recursively. In a pen-and-paper calculation, this involves repeatedly substituting the derivative of the inner functions in the chain rule:This can be generalized to multiple variables as a matrix product of Jacobians.
Compared to reverse accumulation, forward accumulation is natural and easy to implement as the flow of derivative information coincides with the order of evaluation. Each variable
wi
w |
i
Using the chain rule, if
wi
w |
i=\sumj
As an example, consider the function:For clarity, the individual sub-expressions have been labeled with the variables
wi
The choice of the independent variable to which differentiation is performed affects the seed values and . Given interest in the derivative of this function with respect to, the seed values should be set to:
With the seed values set, the values propagate using the chain rule as shown. Figure 2 shows a pictorial depiction of this process as a computational graph.
Operations to compute value | Operations to compute derivative | |||||||
---|---|---|---|---|---|---|---|---|
w1=x1 |
1=1 | |||||||
w2=x2 |
2=0 | |||||||
w3=w1 ⋅ w2 |
3=w2 ⋅
1+w1 ⋅
2 | |||||||
w4=\sinw1 |
4=\cosw1 ⋅
1 | |||||||
w5=w3+w4 |
5=
3+
4 |
To compute the gradient of this example function, which requires not only
\tfrac{\partialy}{\partialx1}
\tfrac{\partialy}{\partialx2}
w |
1=0;
w |
2=1
Forward accumulation calculates the function and the derivative (but only for one independent variable each) in one pass. The associated method call expects the expression Z to be derived with regard to a variable V. The method returns a pair of the evaluated function and its derivation. The method traverses the expression tree recursively until a variable is reached. If the derivative with respect to this variable is requested, its derivative is 1, 0 otherwise. Then the partial function as well as the partial derivative are evaluated.[5]
struct ValueAndPartial ;struct Variable;struct Expression ;struct Variable: public Expression ;struct Plus: public Expression ;struct Multiply: public Expression ;int main
In reverse accumulation AD, the dependent variable to be differentiated is fixed and the derivative is computed with respect to each sub-expression recursively. In a pen-and-paper calculation, the derivative of the outer functions is repeatedly substituted in the chain rule:
In reverse accumulation, the quantity of interest is the adjoint, denoted with a bar
\barwi
wi
Using the chain rule, if
wi
\barwi=\sumj
Reverse accumulation traverses the chain rule from outside to inside, or in the case of the computational graph in Figure 3, from top to bottom. The example function is scalar-valued, and thus there is only one seed for the derivative computation, and only one sweep of the computational graph is needed to calculate the (two-component) gradient. This is only half the work when compared to forward accumulation, but reverse accumulation requires the storage of the intermediate variables as well as the instructions that produced them in a data structure known as a "tape" or a Wengert list[6] (however, Wengert published forward accumulation, not reverse accumulation[7]), which may consume significant memory if the computational graph is large. This can be mitigated to some extent by storing only a subset of the intermediate variables and then reconstructing the necessary work variables by repeating the evaluations, a technique known as rematerialization. Checkpointing is also used to save intermediary states.
The operations to compute the derivative using reverse accumulation are shown in the table below (note the reversed order):The data flow graph of a computation can be manipulated to calculate the gradient of its original calculation. This is done by adding an adjoint node for each primal node, connected by adjoint edges which parallel the primal edges but flow in the opposite direction. The nodes in the adjoint graph represent multiplication by the derivatives of the functions calculated by the nodes in the primal. For instance, addition in the primal causes fanout in the adjoint; fanout in the primal causes addition in the adjoint; a unary function in the primal causes in the adjoint; etc.
Reverse accumulation requires two passes: In the forward pass, the function is evaluated first and the partial results are cached. In the reverse pass, the partial derivatives are calculated and the previously derived value is backpropagated. The corresponding method call expects the expression Z to be derived and seed with the derived value of the parent expression. For the top expression, Z derived with regard to Z, this is 1. The method traverses the expression tree recursively until a variable is reached and adds the current seed value to the derivative expression.[8] [9]
struct Expression ;struct Variable: public Expression ;struct Plus: public Expression ;struct Multiply: public Expression ;int main
Forward and reverse accumulation are just two (extreme) ways of traversing the chain rule. The problem of computing a full Jacobian of with a minimum number of arithmetic operations is known as the optimal Jacobian accumulation (OJA) problem, which is NP-complete.[10] Central to this proof is the idea that algebraic dependencies may exist between the local partials that label the edges of the graph. In particular, two or more edge labels may be recognized as equal. The complexity of the problem is still open if it is assumed that all edge labels are unique and algebraically independent.
Forward mode automatic differentiation is accomplished by augmenting the algebra of real numbers and obtaining a new arithmetic. An additional component is added to every number to represent the derivative of a function at the number, and all arithmetic operators are extended for the augmented algebra. The augmented algebra is the algebra of dual numbers.
Replace every number
x
x+x'\varepsilon
x'
\varepsilon
\varepsilon2=0
(1+y'\varepsilon/y) ⋅ (1-y'\varepsilon/y)=1
Now, polynomials can be calculated in this augmented arithmetic. If
P(x)=p0+p1x+
2 | |
p | |
2x |
+ … +pnxn
P(1)
P
x'
The new arithmetic consists of ordered pairs, elements written
\langlex,x'\rangle
g
gu
gv
g
When a binary basic arithmetic operation is applied to mixed arguments—the pair
\langleu,u'\rangle
c
\langlec,0\rangle
f:\R\to\R
x0
f(\langlex0,1\rangle)
\langlef(x0),f'(x0)\rangle
An example implementation based on the dual number approach follows.
struct Dual ;// Example: Finding the partials of z = x * (x + y) + y * y at (x, y) = (2, 3)Dual f(Dual x, Dual y) int main
Multivariate functions can be handled with the same efficiency and mechanisms as univariate functions by adopting a directional derivative operator. That is, if it is sufficient to compute
y'=\nablaf(x) ⋅ x'
y'\in\Rm
f:\Rn\to\Rm
x\in\Rn
x'\in\Rn
(\langley1,y'1\rangle,\ldots,\langleym,y'm\rangle)=f(\langlex1,x'1\rangle,\ldots,\langlexn,x'n\rangle)
\nablaf
n
The above arithmetic can be generalized to calculate second order and higher derivatives of multivariate functions. However, the arithmetic rules quickly grow complicated: complexity is quadratic in the highest derivative degree. Instead, truncated Taylor polynomial algebra can be used. The resulting arithmetic, defined on generalized dual numbers, allows efficient computation using functions as if they were a data type. Once the Taylor polynomial of a function is known, the derivatives are easily extracted.
Forward-mode AD is implemented by a nonstandard interpretation of the program in which real numbers are replaced by dual numbers, constants are lifted to dual numbers with a zero epsilon coefficient, and the numeric primitives are lifted to operate on dual numbers. This nonstandard interpretation is generally implemented using one of two strategies: source code transformation or operator overloading.
The source code for a function is replaced by an automatically generated source code that includes statements for calculating the derivatives interleaved with the original instructions.
Source code transformation can be implemented for all programming languages, and it is also easier for the compiler to do compile time optimizations. However, the implementation of the AD tool itself is more difficult and the build system is more complex.
Operator overloading is a possibility for source code written in a language supporting it. Objects for real numbers and elementary mathematical operations must be overloaded to cater for the augmented arithmetic depicted above. This requires no change in the form or sequence of operations in the original source code for the function to be differentiated, but often requires changes in basic data types for numbers and vectors to support overloading and often also involves the insertion of special flagging operations. Due to the inherent operator overloading overhead on each loop, this approach usually demonstrates weaker speed performance.
Overloaded Operators can be used to extract the valuation graph, followed by automatic generation of the AD-version of the primal function at run-time. Unlike the classic OO AAD, such AD-function does not change from one iteration to the next one. Hence there is any OO or tape interpretation run-time overhead per Xi sample.
With the AD-function being generated at runtime, it can be optimised to take into account the current state of the program and precompute certain values. In addition, it can be generated in a way to consistently utilize native CPU vectorization to process 4(8)-double chunks of user data (AVX2\AVX512 speed up x4-x8). With multithreading added into account, such approach can lead to a final acceleration of order 8 × #Cores compared to the traditional AAD tools. A reference implementation is available on GitHub.[11]