From 571c1d43c6140949b8b46a4f1fef9d959f80953e Mon Sep 17 00:00:00 2001 From: Gianluca Iacullo Date: Wed, 17 Apr 2024 17:44:17 +0200 Subject: [PATCH] helloworld --- hello1.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 hello1.c diff --git a/hello1.c b/hello1.c new file mode 100644 index 0000000..86d4250 --- /dev/null +++ b/hello1.c @@ -0,0 +1,11 @@ +#include "mpi.h" +#include +int main( int argc, char **argv ){ +int rank, size; +MPI_Init( &argc, &argv ); +MPI_Comm_rank( MPI_COMM_WORLD, &rank ); +MPI_Comm_size( MPI_COMM_WORLD, &size ); +printf( "Hello world! I'm process %d of %d\n",rank, size ); +MPI_Finalize(); +return 0; +}