File: blacs_setup_.c

package info (click to toggle)
scalapack 2.0.2-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 36,300 kB
  • sloc: fortran: 338,514; ansic: 75,307; makefile: 1,385; sh: 56
file content (15 lines) | stat: -rw-r--r-- 301 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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);
}