1
1
openmpi/orte/test/system/orte_loop_child.c

19 строки
330 B
C

#include <stdlib.h>
#include <stdio.h>
#include "orte/runtime/runtime.h"
int main( int argc, char **argv )
{
int rc;
if (ORTE_SUCCESS != (rc = orte_init(false))) {
fprintf(stderr, "couldn't init orte - error code %d\n", rc);
return rc;
}
sleep(1);
orte_finalize();
return 0;
}