File: ptopget_.c

package info (click to toggle)
scalapack 1.6-13
  • links: PTS
  • area: main
  • in suites: potato
  • size: 30,476 kB
  • ctags: 25,789
  • sloc: fortran: 296,718; ansic: 51,265; makefile: 1,541; sh: 4
file content (37 lines) | stat: -rw-r--r-- 875 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include "tools.h"

/* ---------------------------------------------------------------------
*
*  -- PBLAS routine (version 1.5) --
*     University of Tennessee, Knoxville, Oak Ridge National Laboratory,
*     and University of California, Berkeley.
*     March 17, 1995
*
*  ---------------------------------------------------------------------
*/

void ptopget_( ictxt, op, scope, top  )
/*
*  .. Scalar Arguments ..
*/
   int         *ictxt;
   F_CHAR      op, scope, top;
{
/*
*  Purpose
*  =======
*
*  ptopget_ get the row, column or all broadcast and combine topologies.
*
* ======================================================================
*
*  .. External Functions ..
*/
   char        * ptop(), * topc;
/*
*  .. Executable Statements ..
*/
   topc = F2C_CHAR( top );
   * topc = * ptop( F2C_CHAR( op ), F2C_CHAR( scope ), "!" );
   top = C2F_CHAR( topc );
}