For consistency

This commit is contained in:
David Doblas Jiménez
2021-04-12 14:06:50 +02:00
parent 2894edea7f
commit 2b9dd12b19
5 changed files with 788 additions and 0 deletions

12
Exercises/ex_0/shmem1.c Normal file
View File

@@ -0,0 +1,12 @@
#include <stdio.h>
#include <mpp/shmem.h>
int main(int argc, char*argv[])
{
shmem_init();
printf("SHMEM: n_pes = %d : my_pe = %d\n",
shmem_n_pes(), shmem_my_pe());
return 0;
}