File: blacs_setup_.c

package info (click to toggle)
scalapack 2.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 37,012 kB
  • sloc: fortran: 339,113; ansic: 74,517; makefile: 1,494; sh: 34
file content (14 lines) | stat: -rw-r--r-- 300 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "Bdef.h"

#if (INTFACE == C_CALL)
void Cblacs_setup(Int *mypnum, Int *nprocs)
#else
F_VOID_FUNC blacs_setup_(Int *mypnum, Int *nprocs)
#endif
{
/*
 * blacs_setup same as blacs_pinfo for non-PVM versions of the BLACS
 */
   void Cblacs_pinfo(Int *, Int *);
   Cblacs_pinfo(mypnum, nprocs);
}