8 lines
98 B
C
8 lines
98 B
C
#include <mpi.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
MPI_Init(&argc, &argv);
|
|
MPI_Finalize();
|
|
}
|