04b134eace
2. Oshmem examples moved to 'mpi' build target. 3. Oshmem examples renamed as 'shmem' => 'oshmem'. 4. Fixed warnings in oshmem_info. Refs: 3763 This commit was SVN r29663.
27 строки
433 B
C
27 строки
433 B
C
/*
|
|
* Copyright (c) 2013 Mellanox Technologies, Inc.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "shmem.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
int proc, nproc;
|
|
|
|
start_pes(0);
|
|
nproc = _num_pes();
|
|
proc = _my_pe();
|
|
|
|
printf("Hello, world, I am %d of %d\n",
|
|
proc, nproc);
|
|
|
|
return 0;
|
|
}
|