SCALAPACK 2.2.2
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ pb_noabort()

integer function pb_noabort ( integer  cinfo)

Definition at line 1852 of file pblastim.f.

1853*
1854* -- PBLAS test routine (version 2.0) --
1855* University of Tennessee, Knoxville, Oak Ridge National Laboratory,
1856* and University of California, Berkeley.
1857* April 1, 1998
1858*
1859* .. Scalar Arguments ..
1860 INTEGER CINFO
1861* ..
1862*
1863* Purpose
1864* =======
1865*
1866* PB_NOABORT transmits the info parameter of a PBLAS routine to the
1867* tester and tells the PBLAS error handler to avoid aborting on erro-
1868* neous input arguments.
1869*
1870* Notes
1871* =====
1872*
1873* This routine is necessary because of the CRAY C fortran interface
1874* and the fact that the usual PBLAS error handler routine has been
1875* initially written in C.
1876*
1877* -- Written on April 1, 1998 by
1878* Antoine Petitet, University of Tennessee, Knoxville 37996, USA.
1879*
1880* =====================================================================
1881*
1882* .. Common Blocks ..
1883 INTEGER INFO, NBLOG, NOUT
1884 LOGICAL ABRTFLG
1885 COMMON /infoc/info, nblog
1886 COMMON /pberrorc/nout, abrtflg
1887* ..
1888* .. Executable Statements ..
1889*
1890 info = cinfo
1891 IF( abrtflg ) THEN
1892 pb_noabort = 0
1893 ELSE
1894 pb_noabort = 1
1895 END IF
1896*
1897 RETURN
1898*
1899* End of PB_NOABORT
1900*
integer function pb_noabort(cinfo)
Definition pblastst.f:1622
Here is the call graph for this function: