13 lines
202 B
C
13 lines
202 B
C
#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;
|
|
}
|