x10ae_AD_f is only required from C and Fortran. x10ae_AD_f sets the length of the ruser array in a configuration data object. This enables/disables checkpointing for symbolic adjoint routines. The set of possible values are: -1, 0 and greater 0.
To be consistent with the naming scheme for other routines in the AD Library, five routines are available with names formed by replacing AD in the above by one of p0w, a1w, t1w, a1t1w or t2w.
To be consistent with the naming scheme for other functions in the AD Library, five functions are available with names formed by replacing AD in the above by one of p0w, a1w, t1w, a1t1w or t2w.
3Description
x10ae_AD_f sets the length of the user array in the configuration data object. It is relevant in symbolic adjoint mode routines and enables/disables checkpointing of ruser array. The values currently allowed are -1, 0, and greater 0.
0 is default and generates an error, if ruser is not nullptr. -1 disables checkpoint. Any positive number defines the length of the array and enables checkpointing in symbolic mode.
This routine must be called after a call to x10aa_AD_f (to create a handle to the configuration data object) and prior to the call of the computational NAG AD Library routines for which the information is set.
4References
None.
5Arguments
1: – Pointer to AD DataInput/Output
On entry: a handle to the AD configuration data object, as created by x10aa_AD_f.
On exit: holds a handle to the internal data structure where information about the length of the ruser array has been stored. You must not change the handle other than via NAG AD Library calls until it is destroyed by x10ab_AD_f.
2: – IntegerInput
On entry: the size of the user declared array ruser.
Constraint:
.
3: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended. When the value or is used it is essential to test the value of ifail on exit.
On exit: unless the routine detects an error or a warning has been flagged (see Section 6).
6Error Indicators and Warnings
If on entry or , explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
On entry: ad_handle is not a valid handle for the AD computational data object. Either ad_handle has not been initialized or it has become corrupted.
On entry: unexpected value of rusersize.
Constraint: .
An unexpected error has been triggered by this routine. Please
contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
Not applicable.
8Parallelism and Performance
x10ae_AD_f is not threaded in any implementation.
9Further Comments
None.
10Example
See examples for computational routines in the NAG AD Library, for example, Section 10 in c05ay_a1w_f.