This website works better with JavaScript
Home
Explore
Help
Sign In
radu
/
LaTeX-examples
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
00c02a4fea
Branches
Tags
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
mpi
/
comm-size-example.c
comm-size-example.c
86 B
History
Raw
1
2
3
4
5
6
7
#include "mpi.h"
int size;
MPI_Comm comm;
...
MPI_Comm_size(comm, &size);
...