diff --git a/sem1/hello b/sem1/hello deleted file mode 100755 index 2f97373..0000000 Binary files a/sem1/hello and /dev/null differ diff --git a/sem1/hello.c b/sem1/hello.c deleted file mode 100644 index d3a6722..0000000 --- a/sem1/hello.c +++ /dev/null @@ -1,10 +0,0 @@ -#include -#include -int main(int argc, char *argv[]){ - int commsize, my_rank; - MPI_Init(&argc,&argv); - MPI_Comm_size(MPI_COMM_WORLD, &commsize); - MPI_Comm_rank(MPI_COMM_WORLD, &my_rank); - printf ("Communicator size= %d My rank= %d\n", commsize,my_rank); - MPI_Finalize(); -}