#define _GNU_SOURCE
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#include "examples.h"
#include <pmix.h>
int main(int argc, char **argv)
{
pmix_proc_t myproc;
pmix_status_t rc;
pmix_value_t *val = NULL;
pmix_proc_t proc;
EXAMPLES_HIDE_UNUSED_PARAMS(argc, argv);
if (PMIX_SUCCESS != (rc = PMIx_Init(&myproc, NULL, 0))) {
if (PMIX_ERR_UNREACH == rc) {
fprintf(stderr, "%s: Cannot operate as singleton\n",
PMIx_Proc_string(&myproc));
} else {
fprintf(stderr, "%s: PMIx_Init failed: %s\n",
PMIx_Proc_string(&myproc),
PMIx_Error_string(rc));
}
exit(1);
}
fprintf(stderr, "%s: Running\n", PMIx_Proc_string(&myproc));
PMIX_LOAD_PROCID(&proc, myproc.nspace, PMIX_RANK_INVALID);
rc = PMIx_Get(&proc, PMIX_RANK, NULL, 0, &val);
if (PMIX_SUCCESS != rc) {
fprintf(stderr, "%s: Get rank failed - %s\n", PMIx_Proc_string(&myproc), PMIx_Error_string(rc));
fflush(stderr);
goto done;
}
if (val->data.rank != myproc.rank) {
fprintf(stderr, "%s: Get rank returned wrong rank - %u instead of %u\n",
PMIx_Proc_string(&myproc), val->data.rank, myproc.rank);
fflush(stderr);
goto done;
}
fprintf(stderr, "%s: Rank return correct\n", PMIx_Proc_string(&myproc));
PMIX_VALUE_RELEASE(val);
rc = PMIx_Get(&myproc, PMIX_NODEID, NULL, 0, &val);
if (PMIX_SUCCESS != rc) {
fprintf(stderr, "%s: Get my nodeID failed - %s\n", PMIx_Proc_string(&myproc), PMIx_Error_string(rc));
fflush(stderr);
goto done;
}
if (val->data.uint32 != myproc.rank) {
fprintf(stderr, "%s: Get my nodeID returned wrong value - %u instead of %u\n",
PMIx_Proc_string(&myproc), val->data.uint32, myproc.rank);
fflush(stderr);
goto done;
}
fprintf(stderr, "%s: NodeID return correct\n", PMIx_Proc_string(&myproc));
PMIX_VALUE_RELEASE(val);
PMIX_LOAD_PROCID(&proc, myproc.nspace, PMIX_RANK_WILDCARD);
rc = PMIx_Get(&proc, PMIX_NODEID, NULL, 0, &val);
if (PMIX_SUCCESS == rc) {
fprintf(stderr, "%s: Get my nodeID with WILDCARD rank incorrectly succeeded\n",
PMIx_Proc_string(&myproc));
fflush(stderr);
goto done;
}
fprintf(stderr, "%s: NodeID with WILDCARD rank correctly failed - %s\n",
PMIx_Proc_string(&myproc), PMIx_Error_string(rc));
PMIX_VALUE_RELEASE(val);
if (0 == myproc.rank) {
proc.rank = 1;
} else {
proc.rank = 0;
}
rc = PMIx_Get(&proc, PMIX_NODEID, NULL, 0, &val);
if (PMIX_SUCCESS != rc) {
fprintf(stderr, "%s: Get peer's nodeID failed - %s\n", PMIx_Proc_string(&myproc), PMIx_Error_string(rc));
fflush(stderr);
goto done;
}
if (val->data.uint32 != proc.rank) {
fprintf(stderr, "%s: Get peer's nodeID returned wrong value - %u instead of %u\n",
PMIx_Proc_string(&myproc), val->data.uint32, proc.rank);
fflush(stderr);
goto done;
}
fprintf(stderr, "%s: Peer's NodeID return correct\n", PMIx_Proc_string(&myproc));
PMIX_VALUE_RELEASE(val);
rc = PMIx_Get(&myproc, PMIX_APPNUM, NULL, 0, &val);
if (PMIX_SUCCESS != rc) {
fprintf(stderr, "%s: Get my appnum failed - %s\n", PMIx_Proc_string(&myproc), PMIx_Error_string(rc));
fflush(stderr);
goto done;
}
if (val->data.uint32 != myproc.rank) {
fprintf(stderr, "%s: Get my appnum returned wrong value - %u instead of %u\n",
PMIx_Proc_string(&myproc), val->data.uint32, myproc.rank);
fflush(stderr);
goto done;
}
fprintf(stderr, "%s: Appnum return correct\n", PMIx_Proc_string(&myproc));
PMIX_VALUE_RELEASE(val);
PMIX_LOAD_PROCID(&proc, myproc.nspace, PMIX_RANK_WILDCARD);
rc = PMIx_Get(&proc, PMIX_APPNUM, NULL, 0, &val);
if (PMIX_SUCCESS == rc) {
fprintf(stderr, "%s: Get appnum with WILDCARD incorrectly succeeded - returned %u\n",
PMIx_Proc_string(&myproc), val->data.uint32);
fflush(stderr);
goto done;
}
fprintf(stderr, "%s: Appnum with WILDCARD rank correctly failed - %s\n",
PMIx_Proc_string(&myproc), PMIx_Error_string(rc));
PMIX_VALUE_RELEASE(val);
if (0 == myproc.rank) {
proc.rank = 1;
} else {
proc.rank = 0;
}
rc = PMIx_Get(&proc, PMIX_APPNUM, NULL, 0, &val);
if (PMIX_SUCCESS != rc) {
fprintf(stderr, "%s: Get peer's appnum failed - %s\n", PMIx_Proc_string(&myproc), PMIx_Error_string(rc));
fflush(stderr);
goto done;
}
if (val->data.uint32 != proc.rank) {
fprintf(stderr, "%s: Get peer's appnum returned wrong value - %u instead of %u\n",
PMIx_Proc_string(&myproc), val->data.uint32, proc.rank);
fflush(stderr);
goto done;
}
fprintf(stderr, "%s: Peer's Appnum return correct\n", PMIx_Proc_string(&myproc));
PMIX_VALUE_RELEASE(val);
done:
rc = PMIx_Finalize(NULL, 0);
fflush(stderr);
return (0);
}