2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 14:28:05 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/mpi/comm-size-example.c
Martin Thoma 420b6b31fd MPI
2014-03-09 21:01:47 +01:00

7 lines
No EOL
86 B
C

#include "mpi.h"
int size;
MPI_Comm comm;
...
MPI_Comm_size(comm, &size);
...