f07ca_a1w_f is the adjoint version of the primal routine
f07caf (dgtsv).
Depending on the value of
ad_handle,
f07ca_a1w_f uses algorithmic differentiation or symbolic adjoints to compute adjoints of the primal.
f07caf (dgtsv) computes the solution to a real system of linear equations
where
is an
by
tridiagonal matrix and
and
are
by
matrices.
For further information see
Section 3 in the documentation for
f07caf (dgtsv).
f07ca_a1w_f can provide symbolic adjoints by setting the symbolic mode as described in
Section 3.2.2 in the X10 Chapter Introduction. Please see
Section 4 in NAG AD Library Introduction for API description on how to use symbolic adjoints.
The symbolic adjoint uses the
decomposition computed by the primal routine to obtain the adjoint of the right-hand side
by solving
where
and
denote the
th column of the matrices
and
respectively. The adjoint of the matrix
is then computed according to
where
and
denote the
th column of the matrices
and
respectively.
Du Toit J, Naumann U (2017) Adjoint Algorithmic Differentiation Tool Support for Typical Numerical Patterns in Computational Finance
f07ca_a1w_f provides access to all the arguments available in the primal routine. There are also additional arguments specific to AD. A tooltip popup for each argument can be found by hovering over the argument name in
Section 2 and a summary of the arguments are provided below:
- ad_handle – a handle to the AD configuration data object, as created by x10aa_a1w_f. Symbolic adjoint mode may be selected by calling x10ac_a1w_f with this handle.
- n –
, the number of linear equations, i.e., the order of the matrix .
- nrhs –
, the number of right-hand sides, i.e., the number of columns of the matrix .
- dl –
on entry: must contain the subdiagonal elements of the matrix .
on exit: if no constraints are violated, dl is overwritten by the () elements of the second superdiagonal of the upper triangular matrix from the factorization of , in .
- d –
on entry: must contain the diagonal elements of the matrix .
on exit: if no constraints are violated, this argument is overwritten by the diagonal elements of the upper triangular matrix from the factorization of .
- du –
on entry: must contain the superdiagonal elements of the matrix .
on exit: if no constraints are violated, du is overwritten by the elements of the first superdiagonal of .
- b –
on entry: the by right-hand side matrix .
on exit: if the function exits successfully, the by solution matrix .
- ldb –
the first dimension of the array b.
- ifail –
on exit: unless the routine detects an error (see Section 6).
f07ca_a1w_f uses the standard NAG
ifail mechanism. Any errors indicated via
info values returned by
f07caf may be indicated with the same value returned by
ifail. In addition, this routine may return:
An unexpected AD error has been triggered by this routine. Please
contact
NAG.
See
Section 5.2 in the NAG AD Library Introduction for further information.
Dynamic memory allocation failed for AD.
See
Section 5.1 in the NAG AD Library Introduction for further information.
Not applicable.
None.
The following examples are variants of the example for
f07caf (dgtsv), modified to demonstrate calling the NAG AD Library.