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 not been compiled in a manner that facilitates their use within a multithreaded application.
The library can be used with or without the compiler flag -qextname.
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/fsai321dal or /usr/local/NAG/fsai321dal depending on your system; however it could have been changed by the installer. To identify [INSTALL_DIR] for this installation:
xlf_r -q32 -qsmp=omp -qnosave driver.f [INSTALL_DIR]/lib/libnagsmp.a -lesslsmpwhere driver.f is your application program; or
xlf_r -q32 -qsmp=omp -qnosave driver.f [INSTALL_DIR]/lib/libnagsmp.so -lesslsmpif the shareable library is required.
To use the NAG SMP and the ESSL libraries, you may link in the following manner:
xlf_r -q32 -qsmp=omp -qnosave driver.f -lnagsmp -lesslsmpThis 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 shareable library libnagsmp.so you need the -brtl compiler flag:
xlf_r -q32 -qsmp=omp -qnosave -brtl driver.f -lnagsmp -lesslsmp
setenv OMP_NUM_THREADS NIn the Bourne shell, type:
set OMP_NUM_THREADS=N export OMP_NUM_THREADSwhere N is the number of processors required. OMP_NUM_THREADS may be re-set between each execution of the program, as desired.
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.
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 4will copy the example program and its data into the files e04ucfe.f and e04ucfe.d in the current folder and process them to produce the example program results in the file e04ucfe.r.
The example programs are supplied in machine-readable form. They are suitable for immediate usage. Note that the distributed example programs are those used in this implementation and may not correspond exactly with the programs published in the Library Manual. The distributed example programs should be used in preference wherever possible.
real or double precision - DOUBLE PRECISION (REAL*8) basic precision - double precision complex or complex*16 - COMPLEX*16 additional precision - quadruple precision (REAL*16,COMPLEX*32) machine precision - the machine precision, see the value returned by X02AJF in Section 4
Thus a parameter described as real or double precision should be declared as DOUBLE PRECISION in your program. If a routine accumulates an inner product in additional precision, it is using software to simulate quadruple precision.
All references to routines in Chapter F07 - Linear Equations (LAPACK) and Chapter F08 - Least-squares and Eigenvalue Problems (LAPACK) use the LAPACK name, not the NAG F07/F08 name.
(a) Subroutines are called as such
(b) Functions are declared with the right type
(c) The correct number of arguments are passed
(d) All arguments match in type and structure
These interface blocks have been generated automatically by analysing the source code for the NAG SMP Library. As a consequence, and because these files have been thoroughly tested, their use is recommended in preference to writing your own declarations.
The NAG SMP Library 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_chapterThese are supplied in pre-compiled form (.mod files) and they can be accessed by specifying the -Ipathname option on each f90/95 invocation, where pathname ([INSTALL_DIR]/nag_interface_blocks) is the path of the directory containing the compiled interface blocks.
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 SMP Library 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 ***************************************************** * Add USE statements for relevant chapters * USE NAG_F77_D_CHAPTER * * ***************************************************** * .. Parameters .. INTEGER NOUT PARAMETER (NOUT=6) * .. Local Scalars .. DOUBLE PRECISION ABSACC, ANS, YA, YB INTEGER IFAIL, NPTS * .. External Functions .. DOUBLE PRECISION FA, FB, P1, P2A, P2B EXTERNAL FA, FB, P1, P2A, P2B * .. External Subroutines .. ****************************************************** * EXTERNAL declarations need to be removed. * C EXTERNAL D01DAF * * ****************************************************** * .. Executable Statements .. WRITE (NOUT,*) 'D01DAF Example Program Results' YA = 0.0D0 YB = 1.0D0 ABSACC = 1.0D-6 WRITE (NOUT,*) WRITE (NOUT,*) 'First formulation' IFAIL = 1 * CALL D01DAF(YA,YB,P1,P2A,FA,ABSACC,ANS,NPTS,IFAIL) * WRITE (NOUT,99999) 'Integral =', ANS WRITE (NOUT,99998) 'Number of function evaluations =', NPTS IF (IFAIL.GT.0) WRITE (NOUT,99997) 'IFAIL = ', IFAIL WRITE (NOUT,*) WRITE (NOUT,*) 'Second formulation' IFAIL = 1 * CALL D01DAF(YA,YB,P1,P2B,FB,ABSACC,ANS,NPTS,IFAIL) * WRITE (NOUT,99999) 'Integral =', ANS WRITE (NOUT,99998) 'Number of function evaluations =', NPTS IF (IFAIL.GT.0) WRITE (NOUT,99997) 'IFAIL = ', IFAIL STOP * 99999 FORMAT (1X,A,F9.4) 99998 FORMAT (1X,A,I5) 99997 FORMAT (1X,A,I2) END * DOUBLE PRECISION FUNCTION P1(Y) * .. Scalar Arguments .. DOUBLE PRECISION Y * .. Executable Statements .. P1 = 0.0D0 RETURN END * DOUBLE PRECISION FUNCTION P2A(Y) * .. Scalar Arguments .. DOUBLE PRECISION Y * .. Intrinsic Functions .. INTRINSIC SQRT * .. Executable Statements .. P2A = 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 P2B(Y) ***************************************************** * Add USE statements for relevant chapters * USE NAG_F77_X_CHAPTER * * ***************************************************** * .. Scalar Arguments .. DOUBLE PRECISION Y * .. External Functions .. ****************************************************** * Function Type declarations need to be removed. * C DOUBLE PRECISION X01AAF * * ****************************************************** ****************************************************** * EXTERNAL declarations need to be removed. * C EXTERNAL X01AAF * * ****************************************************** * .. Executable Statements .. P2B = 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
In this implementation calls to BLAS and LAPACK routines are implemented by calls to IBM ESSL,
except for the following routines:
DBDSDC DBDSQR DDISNA DGBBRD DGBCON DGBEQU DGBRFS DGBSV DGBSVX DGBTRF DGBTRS DGEBAK DGEBAL DGEBRD DGECON 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 DPOCON DPOEQU DPORFS DPOSV DPOSVX DPOTRF DPOTRS DPPCON DPPEQU DPPRFS DPPSV DPPSVX DPPTRI DPTCON DPTEQR DPTRFS DPTSV DPTSVX DPTTRF DPTTRS DROTI DSBEV DSBEVD DSBEVX DSBGST DSBGV DSBGVD DSBGVX DSBTRD 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 ZGBBRD ZGBCON ZGBEQU ZGBRFS ZGBSV ZGBSVX ZGBTRF ZGBTRS ZGEBAK ZGEBAL ZGEBRD ZGECON 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 ZPOCON ZPOEQU ZPORFS ZPOSV ZPOSVX ZPOTRF ZPOTRS ZPPCON ZPPEQU ZPPRFS ZPPSV ZPPSVX ZPPTRF ZPPTRI ZPPTRS 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
F07GDF F07GEF
S07AAF F(1) = 1.0D+13 F(2) = 1.0D-14 S10AAF E(1) = 1.8500D+1 S10ABF E(1) = 7.080D+2 S10ACF E(1) = 7.080D+2 S13AAF x(hi) = 7.083D+2 S13ACF x(hi) = 1.0D+16 S13ADF x(hi) = 1.0D+17 S14AAF IFAIL = 1 if X > 1.70D+2 IFAIL = 2 if X < -1.70D+2 IFAIL = 3 if abs(X) < 2.23D-308 S14ABF IFAIL = 2 if X > 2.55D+305 S15ADF x(hi) = 2.66D+1 x(low) = -6.25D+0 S15AEF x(hi) = 6.25D+0 S17ACF IFAIL = 1 if X > 1.0D+16 S17ADF IFAIL = 1 if X > 1.0D+16 IFAIL = 3 if 0.0D+00 < X <= 2.23D-308 S17AEF IFAIL = 1 if abs(X) > 1.0D+16 S17AFF IFAIL = 1 if abs(X) > 1.0D+16 S17AGF IFAIL = 1 if X > 1.038D+2 IFAIL = 2 if X < -5.6D+10 S17AHF IFAIL = 1 if X > 1.041D+2 IFAIL = 2 if X < -5.6D+10 S17AJF IFAIL = 1 if X > 1.041D+2 IFAIL = 2 if X < -1.8D+9 S17AKF IFAIL = 1 if X > 1.041D+2 IFAIL = 2 if X < -1.8D+9 S17DCF IFAIL = 2 if abs (Z) < 3.93D-305 IFAIL = 4 if abs (Z) or FNU+N-1 > 3.27D+4 IFAIL = 5 if abs (Z) or FNU+N-1 > 1.07D+9 S17DEF IFAIL = 2 if imag (Z) > 7.00D+2 IFAIL = 3 if abs (Z) or FNU+N-1 > 3.27D+4 IFAIL = 4 if abs (Z) or FNU+N-1 > 1.07D+9 S17DGF IFAIL = 3 if abs (Z) > 1.02D+3 IFAIL = 4 if abs (Z) > 1.04D+6 S17DHF IFAIL = 3 if abs (Z) > 1.02D+3 IFAIL = 4 if abs (Z) > 1.04D+6 S17DLF IFAIL = 2 if abs (Z) < 3.93D-305 IFAIL = 4 if abs (Z) or FNU+N-1 > 3.27D+4 IFAIL = 5 if abs (Z) or FNU+N-1 > 1.07D+9 S18ADF IFAIL = 2 if 0.0D+00 < X <= 2.23D-308 S18AEF IFAIL = 1 if abs(X) > 7.116D+2 S18AFF IFAIL = 1 if abs(X) > 7.116D+2 S18CDF IFAIL = 2 if 0.0D+00 < X <= 2.23D-308 S18DCF IFAIL = 2 if abs (Z) < 3.93D-305 IFAIL = 4 if abs (Z) or FNU+N-1 > 3.27D+4 IFAIL = 5 if abs (Z) or FNU+N-1 > 1.07D+9 S18DEF IFAIL = 2 if real (Z) > 7.00D+2 IFAIL = 3 if abs (Z) or FNU+N-1 > 3.27D+4 IFAIL = 4 if abs (Z) or FNU+N-1 > 1.07D+9 S19AAF IFAIL = 1 if abs(x) >= 4.95000D+1 S19ABF IFAIL = 1 if abs(x) >= 4.95000D+1 S19ACF IFAIL = 1 if X > 9.9726D+2 S19ADF IFAIL = 1 if X > 9.9726D+2 S21BCF IFAIL = 3 if an argument < 1.579D-205 IFAIL = 4 if an argument >= 3.774D+202 S21BDF IFAIL = 3 if an argument < 2.820D-103 IFAIL = 4 if an argument >= 1.404D+102
X01AAF (PI) = 3.1415926535897932D+00 X01ABF (GAMMA) = 0.5772156649015329D+00
X02BHF = 2 X02BJF = 53 X02BKF = -1021 X02BLF = 1024 X02DJF = .TRUE.Derived parameters of the floating-point arithmetic
X02AJF = 1.11022302462516D-16 X02AKF = 2.22507385850721D-308 X02ALF = 1.79769313486231D+308 X02AMF = 2.22507385850721D-308 X02ANF = 2.22507385850721D-308Parameters of other aspects of the computing environment
X02AHF = 8.11296384146067D+31 X02BBF = 2147483647 X02BEF = 15 X02DAF = .FALSE.
The Library Manual is supplied in the form of Portable Document Format (PDF) files, with an HTML index, in the nagdoc_mk21 directory. The introductory material is also provided as HTML files in the nagdoc_mk21 directory.
A main index file has been provided (nagdoc_mk21/html/mark21.html) which contains a fully linked contents document pointing to all the available PDF (and where available HTML) files. Use your HTML browser to navigate from here.
In addition the following are provided:
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 and NAG product code (in this case FSAI321DAL).
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/ or http://www.nag-j.co.jp/
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 1431 Opus Place, Suite 220 Downers Grove IL 60515-1362 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 Japan email: help@nag-j.co.jp Tel: +81 (0)3 5542 6311 Fax: +81 (0)3 5542 6312