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

◆ ibtmsgid()

integer function ibtmsgid

Definition at line 1360 of file blacstest.f.

1361*
1362* -- BLACS tester (version 1.0) --
1363* University of Tennessee
1364* December 15, 1994
1365*
1366*
1367* PURPOSE
1368* =======
1369* IBTMSGID : returns a ID for tester communication.
1370*
1371 INTEGER MINID
1372 INTEGER ITMP(2)
1373 SAVE minid
1374 DATA minid /-1/
1375*
1376* On first call, reserve 1st 1000 IDs for tester use
1377*
1378 IF (minid .EQ. -1) THEN
1379 CALL blacs_get( -1, 1, itmp )
1380 minid = itmp(1)
1381 itmp(1) = itmp(1) + 1000
1382 CALL blacs_set( -1, 1, itmp )
1383 END IF
1384*
1385* return the minimum allowable ID
1386*
1387 ibtmsgid = minid
1388*
1389 RETURN
integer function ibtmsgid()
Definition blacstest.f:1361
Here is the call graph for this function:
Here is the caller graph for this function: