NAG Library for SMP & Multicore, Mark 22

FSAI622DAL - License Managed

IBM POWER6, 64-bit, AIX, xlf, Double Precision

Users' Note



Contents


1. Introduction

This document is essential reading for every user of the NAG Library for SMP & Multicore implementation specified in the title. It provides implementation-specific detail that augments the information provided in the NAG Mark 22 Library Manual (which we will refer to as the Library Manual). Wherever that manual refers to the "Users' Note for your implementation", you should consult this note.

In addition, NAG recommends that before calling any Library routine you should read the following reference material (see Section 5):

(a) Essential Introduction
(b) Chapter Introduction
(c) Routine Document

The libraries supplied with this implementation have been compiled in a manner that facilitates the use of the OpenMP threading model. Lower-level threading models such as Pthreads are not supported.

2. Post Release Information

Please check the following URL:

http://www.nag.co.uk/doc/inun/fs22/ai6dal/postrelease.html

for details of any new information related to the applicability or usage of this implementation.

3. General Information

3.1. Accessing the Library

In this section we assume that the library has been installed in the directory [INSTALL_DIR].

By default [INSTALL_DIR] (see Installer's Note (in.html)) is /opt/NAG/fsai622dal or /usr/local/NAG/fsai622dal depending on your system; however it could have been changed by the person who did the installation. To identify [INSTALL_DIR] for this installation:

To use the NAG Library for SMP & Multicore and the IBM ESSL libraries, you may link in the following manner:
  xlf_r -q64 -qsmp=omp -qnosave -qxlf77=nopersistent:leadzero driver.f \
        [INSTALL_DIR]/lib/libnagsmp.a -lesslsmp 
where driver.f is your application program ; or
  xlf_r -q64 -qsmp=omp -qnosave -qxlf77=nopersistent:leadzero driver.f \
        [INSTALL_DIR]/lib/libnagsmp.so -lesslsmp
if the shareable library is required.

The library can be used with or without the compiler flag -qextname.

If the compiled NAG Library for SMP & Multicore libraries and the ESSL libraries are installed in, or are pointed at by symbolic links from, directories in the search path of the linker, such as /usr/lib, then you may alternatively link in the following manner:

  xlf_r -q64 -qsmp=omp -qnosave -qxlf77=nopersistent:leadzero driver.f \
        -lnagsmp -lesslsmp
This will usually link to the static library in preference to the shareable library if both the libraries are at the same location.

To use the shared library libnagsmp.so you need to use the -brtl compiler flag as follows:

  xlf_r -q64 -qsmp=omp -qnosave -qxlf77=nopersistent:leadzero -brtl driver.f \
        -lnagsmp -lesslsmp

If your application uses the NAG shareable library then the environment variable LIBPATH must be set or extended, as follows, to allow run time linkage.

In the C shell, type:

   setenv LIBPATH [INSTALL_DIR]/lib
to set LIBPATH, or
   setenv LIBPATH [INSTALL_DIR]/lib:${LIBPATH}
to extend LIBPATH if you already have it set.

In the Bourne shell, type:

   LIBPATH=[INSTALL_DIR]/lib
   export LIBPATH
to set LIBPATH, or
   LIBPATH=[INSTALL_DIR]/lib:${LIBPATH}
   export LIBPATH
to extend LIBPATH if you already have it set.

This implementation is not compatible with previous versions of XLF (i.e. XLF 12 and earlier).

The shared library is only recommended for use with the exact compiler version used to create this implementation (IBM XLF version 13.1.0.3). If this is not the default compiler installation on your system, the environment variable LIBPATH must be set to point to the library directory of the IBM XLF version 13.1.0.3 installation. Given this compatibility issue, users are advised to use the static library whenever possible.

3.1.1. Set the number of processors to use

Set the environment variable OMP_NUM_THREADS to the number of processors required, up to maximum available on your system.

In the C shell type:

setenv OMP_NUM_THREADS N
In the Bourne shell, type:
OMP_NUM_THREADS=N
export OMP_NUM_THREADS
where N is the number of processors required. OMP_NUM_THREADS may be re-set between each execution of the program, as desired.

3.2. Interface Blocks

The NAG Library for SMP & Multicore Interface Blocks define the type and arguments of each user callable NAG Library routine. These are not essential to calling the NAG Library for SMP & Multicore from Fortran programs. Their purpose is to allow the Fortran compiler to check that NAG Library routines are called correctly. The interface blocks enable the compiler to check that:

(a) subroutines are called as such;
(b) functions are declared with the right type;
(c) the correct number of arguments are passed; and
(d) all arguments match in type and structure.

These interface blocks have been generated automatically by analysing the source code for the NAG Library for SMP & Multicore. As a consequence, and because these files have been thoroughly tested, their use is recommended in preference to writing your own declarations.

The NAG Library for SMP & Multicore Interface Block files are organised by Library chapter. The module names are:

  nag_f77_a_chapter
  nag_f77_c_chapter
  nag_f77_d_chapter
  nag_f77_e_chapter
  nag_f77_f_chapter
  nag_f77_g_chapter
  nag_f77_h_chapter
  nag_f77_m_chapter
  nag_f77_p_chapter
  nag_f77_s_chapter
  nag_f77_x_chapter
These are supplied in pre-compiled form (.mod files) and they can be accessed by specifying the -Ipathname option on each compiler invocation, where pathname (e.g. [INSTALL_DIR]/nag_interface_blocks) is the path of the directory containing the compiled interface blocks. The interface block files are also supplied in source form, but these are only required if the precompiled form is incompatible with the compiler in use.

In order to make use of these modules from existing Fortran 77 code, the following changes need to be made:

The above steps need to be done for each unit (main program, function or subroutine) in your code.

These changes are illustrated by showing the conversion of the Fortran 77 version of the example program for NAG Library for SMP & Multicore routine D01DAF. Please note that this is not exactly the same as the example program that is distributed with this implementation. Each change is surrounded by comments boxed with asterisks.

*     D01DAF Example Program Text
*     Mark 14 Revised. NAG Copyright 1989.
*****************************************************
* Add USE statements for relevant chapters          *
      USE NAG_F77_D_CHAPTER, ONLY: D01DAF
*                                                   *
*****************************************************
*     .. Parameters ..
      INTEGER          NOUT
      PARAMETER        (NOUT=6)
*     .. Local Scalars ..
      DOUBLE PRECISION ABSACC, ANS, YA, YB
      INTEGER          IFAIL, NPTS
*     .. External Functions ..
      DOUBLE PRECISION FA, FB, PHI1, PHI2A, PHI2B
      EXTERNAL         FA, FB, PHI1, PHI2A, PHI2B
*     .. External Subroutines ..
******************************************************
* EXTERNAL declarations need to be removed.          *
*     EXTERNAL         D01DAF
*                                                    *
******************************************************
*     .. Executable Statements ..
      WRITE (NOUT,*) 'D01DAF Example Program Results'
      YA = 0.0D0
      YB = 1.0D0
      ABSACC = 1.0D-6
      WRITE (NOUT,*)
      IFAIL = 1
*
      CALL D01DAF(YA,YB,PHI1,PHI2A,FA,ABSACC,ANS,NPTS,IFAIL)
*
      IF (IFAIL.LT.0) THEN
         WRITE (NOUT,99998) ' ** D01DAF returned with IFAIL = ', IFAIL
      ELSE
*
         WRITE (NOUT,*) 'First formulation'
         WRITE (NOUT,99999) 'Integral =', ANS
         WRITE (NOUT,99998) 'Number of function evaluations =', NPTS
         IF (IFAIL.GT.0) WRITE (NOUT,99998) 'IFAIL = ', IFAIL
         WRITE (NOUT,*)
         WRITE (NOUT,*) 'Second formulation'
         IFAIL = 1
*
         CALL D01DAF(YA,YB,PHI1,PHI2B,FB,ABSACC,ANS,NPTS,IFAIL)
*
         WRITE (NOUT,99999) 'Integral =', ANS
         WRITE (NOUT,99998) 'Number of function evaluations =', NPTS
         IF (IFAIL.GT.0) WRITE (NOUT,99998) 'IFAIL = ', IFAIL
      END IF
*
99999 FORMAT (1X,A,F9.4)
99998 FORMAT (1X,A,I5)
      END
*
      DOUBLE PRECISION FUNCTION PHI1(Y)
*     .. Scalar Arguments ..
      DOUBLE PRECISION Y
*     .. Executable Statements ..
      PHI1 = 0.0D0
      RETURN
      END
*
      DOUBLE PRECISION FUNCTION PHI2A(Y)
*     .. Scalar Arguments ..
      DOUBLE PRECISION Y
*     .. Intrinsic Functions ..
      INTRINSIC        SQRT
*     .. Executable Statements ..
      PHI2A = SQRT(1.0D0-Y*Y)
      RETURN
      END
*
      DOUBLE PRECISION FUNCTION FA(X,Y)
*     .. Scalar Arguments ..
      DOUBLE PRECISION X, Y
*     .. Executable Statements ..
      FA = X + Y
      RETURN
      END
*
      DOUBLE PRECISION FUNCTION PHI2B(Y)
*****************************************************
* Add USE statements for relevant chapters          *
      USE NAG_F77_X_CHAPTER, ONLY: X01AAF
*                                                   *
*****************************************************
*     .. Scalar Arguments ..
      DOUBLE PRECISION Y
*     .. External Functions ..
******************************************************
* Function Type declarations need to be removed.     *
*     DOUBLE PRECISION X01AAF
*                                                    *
******************************************************
******************************************************
* EXTERNAL declarations need to be removed.          *
*     EXTERNAL         X01AAF
*                                                    *
******************************************************
*     .. Executable Statements ..
      PHI2B = 0.5D0*X01AAF(0.0D0)
      RETURN
      END
*
      DOUBLE PRECISION FUNCTION FB(X,Y)
*     .. Scalar Arguments ..
      DOUBLE PRECISION X, Y
*     .. Intrinsic Functions ..
      INTRINSIC        COS, SIN
*     .. Executable Statements ..
      FB = Y*Y*(COS(X)+SIN(X))
      RETURN
      END

3.3. Example Programs

The example results distributed were generated at Mark 22, using the software described in Section 2.2 of the Installer's Note. These example results may not be exactly reproducible if the example programs are run in a slightly different environment (for example, a different Fortran compiler, a different compiler library, or a different set of BLAS or LAPACK routines). The results which are most sensitive to such differences are: eigenvectors (which may differ by a scalar multiple, often -1, but sometimes complex); numbers of iterations and function evaluations; and residuals and other "small" quantities of the same order as the machine precision.

Note that the example material has been adapted, if necessary, from that published in the Library Manual, so that programs are suitable for execution with this implementation with no further changes. The distributed example programs should be used in preference to the versions in the Library Manual wherever possible. The directory [INSTALL_DIR]/scripts contains two scripts nagsmp_example and nagsmp_example_shar.

The example programs are most easily accessed by one of the commands

Each command will provide you with a copy of an example program (and its data, if any), compile the program and link it with the appropriate libraries (showing you the compile command so that you can recompile your own version of the program). Finally, the executable program will be run, presenting its output to stdout, which is redirected to a file.

The example program concerned, and the number of OpenMP threads to use, are specified by the arguments to the command, e.g.

nagsmp_example e04ucf 4
will copy the example program e04ucfe.f and its data file e04ucfe.d into the current directory and process them with 4 OpenMP threads to produce the example program results in the file e04ucfe.r.

3.4. Interpretation of Bold Italicised Terms

In order to support all implementations of the Library, the Manual has adopted a convention of using bold italics to distinguish terms which have different interpretations in different implementations.

For this double precision implementation, the bold italicised terms used in the Library Manual should be interpreted as follows:

real                  means REAL
double precision      means DOUBLE PRECISION
complex               means COMPLEX
complex*16            means COMPLEX*16 (or equivalent)
basic precision       means DOUBLE PRECISION
additional precision  means quadruple precision
reduced precision     means REAL

Another important bold italicised term is machine precision, which denotes the relative precision to which double precision floating-point numbers are stored in the computer, e.g. in an implementation with approximately 16 decimal digits of precision, machine precision has a value of approximately 1.0D-16.

The precise value of machine precision is given by the routine X02AJF. Other routines in Chapter X02 return the values of other implementation-dependent constants, such as the overflow threshold, or the largest representable integer. Refer to the X02 Chapter Introduction for more details.

The bold italicised term block size is used only in Chapters F07 and F08. It denotes the block size used by block algorithms in these chapters. You only need to be aware of its value when it affects the amount of workspace to be supplied – see the parameters WORK and LWORK of the relevant routine documents and the Chapter Introduction.

In Chapters F06, F07 and F08, alternate routine names are available for BLAS and LAPACK derived routines. For details of the alternate routine names please refer to the relevant Chapter Introduction. Note that applications should reference routines by their BLAS/LAPACK names, rather than their NAG-style names, for optimum performance.

3.5. Explicit Output from NAG Routines

Certain routines produce explicit error messages and advisory messages via output units which have default values that can be reset by using X04AAF for error messages and X04ABF for advisory messages. (The default values are given in Section 4.) The maximum record lengths of error messages and advisory messages (including carriage control characters) are 80 characters, except where otherwise specified.

4. Routine-specific Information

Any further information which applies to one or more routines in this implementation is listed below, chapter by chapter.
  1. C06

    In this implementation calls to the following FFT routines, from the ESSL library, are made whenever possible:
     DCFT DCFT2 DCFT3 DCRFT DRCFT
    
    As a result the following C06 chapter routines have implementation specific workspace requirements:
    C06PAF  C06PCF  C06PFF  C06PJF  C06PKF  C06PQF  C06PRF  C06PSF
    C06PUF  C06PXF
    
    The following table lists formulae to help calculate the required size of the workspace array WORK for each routine. These values may be considerable overestimates depending upon the parameters used (and thus the radices used within the FFT routines).
      Routine	Minimum length of WORK
      C06PAF	MAX( 3*N+15 , N+2+MAX(22000,20000+NINT(1.64*DBLE(N))) )
    
      C06PCF	MAX( 2*N+15 , N+10000+NINT(1.14*DBLE(N)) )
    
      C06PFF	MAX( ML*NL+NL+15 , ML*NL+10000+NINT(1.14*DBLE(NL)) ), where
    		NL = ND(L), ML = MK if MI=1; ML = MI otherwise, where
    		MI = Product of ND(1:L-1), MK = Product of ND(L+1:NDIM)
                    In the example program, we simplify (at the expense of grossly
                    overestimating workspace requirements in many cases) to give
    		N+10000+NINT(1.14*DBLE(N))
    
      C06PJF	As for C06PCF if NDIM=1; 
    		ND(1)*ND(2)+10000+NINT(1.14*DBLE(MAX(ND(1),ND(2)))), if NDIM=2;
    		max LWORK value from C06PFF for L=1,NDIM otherwise.
                    In the example program, we simplify (at the expense of grossly
                    overestimating workspace requirements in many cases) to give
    		N+10000+NINT(1.14*DBLE(N))
    
      C06PKF	MAX( 2*N+15 , N+10000+NINT(1.14*DBLE(N)) )
    
      C06PQF	(M+2)*N+MAX(22000,20000+NINT(1.64*DBLE(N)))
        
      C06PRF	As for C06PCF if M=1;
    		MAX( M*N+2*N+15 , M*N+10000+NINT(1.14*DBLE(N)) ) otherwise
    
      C06PSF	As for C06PCF if M=1;
    		M*N+10000+NINT(1.14*DBLE(N)) otherwise
    
      C06PUF	M*N + 20000 + NINT(1.14*DBLE(M+N))
    
      C06PXF	Calls C06PUF as a 2D problem if MIN(N1,N2,N3) = 1;
       		N1*N2*N3 + 20000 + NINT(1.14*DBLE(N1+N2+N3)) otherwise
    
    On exit from these routines, the real part of WORK(1) will contain the minimum workspace required for the specific combination of parameters used.
  2. F06, F07 and F08

    Many LAPACK routines have a "workspace query" mechanism which allows a caller to interrogate the routine to determine how much workspace to supply. Note that LAPACK routines from the ESSL library may require a different amount of workspace from the equivalent NAG versions of these routines. Care should be taken when using the workspace query mechanism.

    In this implementation calls to Basic Linear Algebra Subprograms (BLAS) and the Linear Algebra PACKage (LAPACK) routines are implemented by calls to ESSL, except for the following routines:

    BLAS_DMAX_VAL    BLAS_DMIN_VAL
    DBDSDC    DBDSQR    DDISNA    DGBBRD    DGBCON    DGBEQU    DGBRFS    DGBSV
    DGBSVX    DGBTRF    DGBTRS    DGEBAK    DGEBAL    DGEBRD    DGEEQU    DGEES
    DGEESX    DGEEV     DGEEVX    DGEHRD    DGELQF    DGELS     DGELSD    DGELSS
    DGELSY    DGEQLF    DGEQP3    DGEQPF    DGEQRF    DGERFS    DGERQF    DGESDD
    DGESV     DGESVD    DGESVX    DGETRF    DGETRS    DGGBAK    DGGBAL    DGGES
    DGGESX    DGGEV     DGGEVX    DGGGLM    DGGHRD    DGGLSE    DGGQRF    DGGRQF
    DGGSVD    DGGSVP    DGTCON    DGTRFS    DGTSV     DGTSVX    DGTTRF    DGTTRS
    DHGEQZ    DHSEIN    DHSEQR    DLAGTM    DLALS0    DLALSD    DLANGT    DLANST
    DLASDA    DLASDQ    DOPGTR    DOPMTR    DORGBR    DORGHR    DORGLQ    DORGQL
    DORGQR    DORGRQ    DORGTR    DORMBR    DORMHR    DORMLQ    DORMQL    DORMQR
    DORMRQ    DORMRZ    DORMTR    DPBCON    DPBEQU    DPBRFS    DPBSTF    DPBSV
    DPBSVX    DPBTRF    DPBTRS    DPOEQU    DPORFS    DPOSV     DPOSVX    DPOTRF
    DPOTRS    DPPEQU    DPPRFS    DPPSV     DPPSVX    DPTCON    DPTEQR    DPTRFS
    DPTSV     DPTSVX    DPTTRF    DPTTRS    DROTI     DSBEV     DSBEVD    DSBEVX
    DSBGST    DSBGV     DSBGVD    DSBGVX    DSBTRD    DSGESV    DSPCON    DSPEV
    DSPEVD    DSPEVX    DSPGST    DSPGV     DSPGVD    DSPGVX    DSPRFS    DSPSV
    DSPSVX    DSPTRD    DSPTRF    DSPTRI    DSPTRS    DSTEBZ    DSTEDC    DSTEGR
    DSTEIN    DSTEQR    DSTERF    DSTEV     DSTEVD    DSTEVR    DSTEVX    DSYCON
    DSYEV     DSYEVD    DSYEVR    DSYEVX    DSYGST    DSYGV     DSYGVD    DSYGVX
    DSYRFS    DSYSV     DSYSVX    DSYTRD    DSYTRF    DSYTRI    DSYTRS    DTBCON
    DTBRFS    DTBTRS    DTGEVC    DTGEXC    DTGSEN    DTGSJA    DTGSNA    DTGSYL
    DTPCON    DTPRFS    DTPTRS    DTRCON    DTREVC    DTREXC    DTRRFS    DTRSEN
    DTRSNA    DTRSYL    DTRTRS    DTZRZF    ZBDSQR    ZCGESV    ZGBBRD    ZGBCON
    ZGBEQU    ZGBRFS    ZGBSV     ZGBSVX    ZGBTRF    ZGBTRS    ZGEBAK    ZGEBAL
    ZGEBRD    ZGEEQU    ZGEES     ZGEESX    ZGEEV     ZGEEVX    ZGEHRD    ZGELQF
    ZGELS     ZGELSD    ZGELSS    ZGELSY    ZGEQLF    ZGEQP3    ZGEQPF    ZGEQRF
    ZGERFS    ZGERQF    ZGESDD    ZGESV     ZGESVD    ZGESVX    ZGETRF    ZGETRS
    ZGGBAK    ZGGBAL    ZGGES     ZGGESX    ZGGEV     ZGGEVX    ZGGGLM    ZGGHRD
    ZGGLSE    ZGGQRF    ZGGRQF    ZGGSVD    ZGGSVP    ZGTCON    ZGTRFS    ZGTSV
    ZGTSVX    ZGTTRF    ZGTTRS    ZHBEV     ZHBEVD    ZHBEVX    ZHBGST    ZHBGV
    ZHBGVD    ZHBGVX    ZHBTRD    ZHECON    ZHEEV     ZHEEVD    ZHEEVR    ZHEEVX
    ZHEGST    ZHEGV     ZHEGVD    ZHEGVX    ZHERFS    ZHESV     ZHESVX    ZHETRD
    ZHETRF    ZHETRI    ZHETRS    ZHGEQZ    ZHPCON    ZHPEV     ZHPEVD    ZHPEVX
    ZHPGST    ZHPGV     ZHPGVD    ZHPGVX    ZHPRFS    ZHPSV     ZHPSVX    ZHPTRD
    ZHPTRF    ZHPTRI    ZHPTRS    ZHSEIN    ZHSEQR    ZLAGTM    ZLALS0    ZLALSD
    ZLANGT    ZLANHT    ZPBCON    ZPBEQU    ZPBRFS    ZPBSTF    ZPBSV     ZPBSVX
    ZPBTRF    ZPBTRS    ZPOEQU    ZPORFS    ZPOSV     ZPOSVX    ZPOTRF    ZPOTRS
    ZPPEQU    ZPPRFS    ZPPSV     ZPPSVX    ZPTCON    ZPTEQR    ZPTRFS    ZPTSV
    ZPTSVX    ZPTTRF    ZPTTRS    ZSPCON    ZSPMV     ZSPRFS    ZSPSV     ZSPSVX
    ZSPTRF    ZSPTRI    ZSPTRS    ZSTEDC    ZSTEGR    ZSTEIN    ZSTEQR    ZSYCON
    ZSYMV     ZSYRFS    ZSYSV     ZSYSVX    ZSYTRF    ZSYTRI    ZSYTRS    ZTBCON
    ZTBRFS    ZTBTRS    ZTGEVC    ZTGEXC    ZTGSEN    ZTGSJA    ZTGSNA    ZTGSYL
    ZTPCON    ZTPRFS    ZTPTRS    ZTRCON    ZTREVC    ZTREXC    ZTRRFS    ZTRSEN
    ZTRSNA    ZTRSYL    ZTRTRS    ZTZRZF    ZUNGBR    ZUNGHR    ZUNGLQ    ZUNGQL
    ZUNGQR    ZUNGRQ    ZUNGTR    ZUNMBR    ZUNMHR    ZUNMLQ    ZUNMQL    ZUNMQR
    ZUNMRQ    ZUNMRZ    ZUNMTR    ZUPGTR    ZUPMTR
    

    The following NAG named routines are wrappers to call LAPACK routines from the vendor library:
    F07GDF/DPPTRF    F07GEF/DPPTRS    F07GRF/ZPPTRF    F07GSF/ZPPTRS
    
  3. F11

    F11MEF is implemented in serial form in this implementation, due to reliability problems when run on multiple threads.
  4. G02

    The value of ACC, the machine-dependent constant mentioned in several documents in the chapter, is 1.0D-13.
  5. P01

    On hard failure, P01ABF writes the error message to the error message unit specified by X04AAF and then stops.
  6. S07 - S21

    Functions in these chapters will give error messages if called with illegal or unsafe arguments. The constants referred to in the NAG Fortran Library Manual have the following values in this implementation:
    S07AAF  F_1   = 1.0E+13
            F_2   = 1.0E-14
    
    S10AAF  E_1   = 1.8715E+1
    S10ABF  E_1   = 7.080E+2
    S10ACF  E_1   = 7.080E+2
    
    S13AAF  X_hi  = 7.083E+2
    S13ACF  X_hi  = 1.0E+16
    S13ADF  X_hi  = 1.0E+17
    
    S14AAF  IFAIL  = 1 if X > 1.70E+2
            IFAIL  = 2 if X < -1.70E+2
            IFAIL  = 3 if abs(X) < 2.23E-308
    S14ABF  IFAIL  = 2 if X > X_big = 2.55E+305
    
    S15ADF  X_hi  = 2.65E+1
    S15AEF  X_hi  = 2.65E+1
    S15AFF  underflow trap was necessary
    S15AGF  IFAIL  = 1 if X >= 2.53E+307
            IFAIL  = 2 if 4.74E+7 <= X < 2.53E+307
            IFAIL  = 3 if X < -2.66E+1
    
    S17ACF  IFAIL  = 1 if X > 1.0E+16
    S17ADF  IFAIL  = 1 if X > 1.0E+16
            IFAIL  = 3 if 0.0E0 < X <= 2.23E-308
    S17AEF  IFAIL  = 1 if abs(X) > 1.0E+16
    S17AFF  IFAIL  = 1 if abs(X) > 1.0E+16
    S17AGF  IFAIL  = 1 if X > 1.038E+2
            IFAIL  = 2 if X < -5.7E+10
    S17AHF  IFAIL  = 1 if X > 1.041E+2
            IFAIL  = 2 if X < -5.7E+10
    S17AJF  IFAIL  = 1 if X > 1.041E+2
            IFAIL  = 2 if X < -1.9E+9
    S17AKF  IFAIL  = 1 if X > 1.041E+2
            IFAIL  = 2 if X < -1.9E+9
    S17DCF  IFAIL  = 2 if abs(Z) < 3.92223E-305
            IFAIL  = 4 if abs(Z) or FNU+N-1 > 3.27679E+4
            IFAIL  = 5 if abs(Z) or FNU+N-1 > 1.07374E+9
    S17DEF  IFAIL  = 2 if imag(Z) > 7.00921E+2
            IFAIL  = 3 if abs(Z) or FNU+N-1 > 3.27679E+4
            IFAIL  = 4 if abs(Z) or FNU+N-1 > 1.07374E+9
    S17DGF  IFAIL  = 3 if abs(Z) > 1.02399E+3
            IFAIL  = 4 if abs(Z) > 1.04857E+6
    S17DHF  IFAIL  = 3 if abs(Z) > 1.02399E+3
            IFAIL  = 4 if abs(Z) > 1.04857E+6
    S17DLF  IFAIL  = 2 if abs(Z) < 3.92223E-305
            IFAIL  = 4 if abs(Z) or FNU+N-1 > 3.27679E+4
            IFAIL  = 5 if abs(Z) or FNU+N-1 > 1.07374E+9
    
    S18ADF  IFAIL  = 2 if 0.0E0 < X <= 2.23E-308
    S18AEF  IFAIL  = 1 if abs(X) > 7.116E+2
    S18AFF  IFAIL  = 1 if abs(X) > 7.116E+2
    S18DCF  IFAIL  = 2 if abs(Z) < 3.92223E-305
            IFAIL  = 4 if abs(Z) or FNU+N-1 > 3.27679E+4
            IFAIL  = 5 if abs(Z) or FNU+N-1 > 1.07374E+9
    S18DEF  IFAIL  = 2 if real(Z) > 7.00921E+2
            IFAIL  = 3 if abs(Z) or FNU+N-1 > 3.27679E+4
            IFAIL  = 4 if abs(Z) or FNU+N-1 > 1.07374E+9
    
    S19AAF  IFAIL  = 1 if abs(X) >= 5.04818E+1
    S19ABF  IFAIL  = 1 if abs(X) >= 5.04818E+1
    S19ACF  IFAIL  = 1 if X > 9.9726E+2
    S19ADF  IFAIL  = 1 if X > 9.9726E+2
    
    S21BCF  IFAIL  = 3 if an argument < 1.583E-205
            IFAIL  = 4 if an argument >= 3.765E+202
    S21BDF  IFAIL  = 3 if an argument < 2.813E-103
            IFAIL  = 4 if an argument >= 1.407E+102
    
  7. X01

    The values of the mathematical constants are:
    X01AAF (pi)    = 3.1415926535897932
    X01ABF (gamma) = 0.5772156649015328
    
  8. X02

    The values of the machine constants are:
    The basic parameters of the model
    X02BHF = 2
    X02BJF = 53
    X02BKF = -1021
    X02BLF = 1024
    X02DJF = .TRUE.
    
    Derived parameters of the floating-point arithmetic
    X02AJF = 1.11022302462516E-16
    X02AKF = 2.22507385850721E-308
    X02ALF = 1.79769313486231E+308
    X02AMF = 2.22507385850721E-308
    X02ANF = 2.22507385850721E-308
    
    Parameters of other aspects of the computing environment
    X02AHF = 8.11296384146067E+31
    X02BBF = 2147483647
    X02BEF = 15
    X02DAF = .TRUE.
    
  9. X04

    The default output units for error and advisory messages for those routines which can produce explicit output are both Fortran Unit 6.

5. Documentation

The Library Manual is available as part of the installation or via download from the NAG website. The most up-to-date version of the documentation is accessible via the NAG website at http://www.nag.co.uk/numeric/FL/FSdocumentation.asp.

The Library Manual is supplied in the following formats:

The following main index files have been provided for these formats:

	nagdoc_fl22/xhtml/FRONTMATTER/manconts.xml
	nagdoc_fl22/pdf/FRONTMATTER/manconts.pdf
	nagdoc_fl22/html/FRONTMATTER/manconts.html
Use your web browser to navigate from here.

Advice on viewing and navigating the formats available can be found in the Online Documentation document.

In addition the following are provided:

Please see the IBM web site for further information about ESSL (http://publib.boulder.ibm.com/infocenter/clresctr/vxrx/topic/com.ibm.cluster.essl.doc/esslbooks.html).

6. Support from NAG

(a) Contact with NAG

Queries concerning this document or the implementation generally should be directed to NAG at one of the addresses given in the Appendix. Users subscribing to the support service are encouraged to contact one of the NAG Response Centres (see below).

(b) NAG Response Centres

The NAG Response Centres are available for general enquiries from all users and also for technical queries from sites with an annually licensed product or support service.

The Response Centres are open during office hours, but contact is possible by fax, email and phone (answering machine) at all times.

When contacting a Response Centre, it helps us deal with your enquiry quickly if you can quote your NAG site reference or account number and NAG product code (in this case FSAI622DAL).

(c) NAG Websites

The NAG websites provide information about implementation availability, descriptions of products, downloadable software, product documentation and technical reports. The NAG websites can be accessed at the following URLs:

http://www.nag.co.uk/, http://www.nag.com/, http://www.nag-j.co.jp/ or http://www.nag-gc.com/

(d) NAG Electronic Newsletter

If you would like to be kept up to date with news from NAG then please register to receive our free electronic newsletter, which will alert you to announcements about new products or product/service enhancements, technical tips, customer stories and NAG's event diary. You can register via one of our websites, or by contacting us at nagnews@nag.co.uk.

(e) Product Registration

To ensure that you receive information on updates and other relevant announcements, please register this product with us. For NAG Library products this may be accomplished by filling in the online registration form at http://www.nag.co.uk/numeric/Library_Registration.asp.

7. User Feedback

Many factors influence the way that NAG's products and services evolve, and your ideas are invaluable in helping us to ensure that we meet your needs. If you would like to contribute to this process, we would be delighted to receive your comments. Please contact any of the NAG Response Centres (shown below).

Appendix - Contact Addresses

NAG Ltd
Wilkinson House
Jordan Hill Road
OXFORD  OX2 8DR                         NAG Ltd Response Centre
United Kingdom                          email: support@nag.co.uk

Tel: +44 (0)1865 511245                 Tel: +44 (0)1865 311744
Fax: +44 (0)1865 310139                 Fax: +44 (0)1865 310139

NAG Inc
801 Warrenville Road
Suite 185
Lisle, IL  60532-4332                   NAG Inc Response Center
USA                                     email: support@nag.com

Tel: +1 630 971 2337                    Tel: +1 630 971 2337
Fax: +1 630 971 2706                    Fax: +1 630 971 2706

Nihon NAG KK
Hatchobori Frontier Building 2F
4-9-9
Hatchobori
Chuo-ku
Tokyo 104-0032                          Nihon NAG Response Centre
Japan                                   email: support@nag-j.co.jp

Tel: +81 3 5542 6311                    Tel: +81 3 5542 6311
Fax: +81 3 5542 6312                    Fax: +81 3 5542 6312

NAG Taiwan Branch Office
5F.-5, No.36, Sec.3
Minsheng E. Rd.
Taipei City 10480                       NAG Taiwan Response Centre
Taiwan                                  email: support@nag-gc.com

Tel: +886 2 25093288                    Tel: +886 2 25093288
Fax: +886 2 25091798                    Fax: +886 2 25091798