File: client4.c

package info (click to toggle)
openmpi 5.0.8-3
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 201,692 kB
  • sloc: ansic: 613,078; makefile: 42,353; sh: 11,194; javascript: 9,244; f90: 7,052; java: 6,404; perl: 5,179; python: 1,859; lex: 740; fortran: 61; cpp: 20; tcl: 12
file content (187 lines) | stat: -rw-r--r-- 6,946 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*
 * Copyright (c) 2004-2010 The Trustees of Indiana University and Indiana
 *                         University Research and Technology
 *                         Corporation.  All rights reserved.
 * Copyright (c) 2004-2011 The University of Tennessee and The University
 *                         of Tennessee Research Foundation.  All rights
 *                         reserved.
 * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
 *                         University of Stuttgart.  All rights reserved.
 * Copyright (c) 2004-2005 The Regents of the University of California.
 *                         All rights reserved.
 * Copyright (c) 2006-2013 Los Alamos National Security, LLC.
 *                         All rights reserved.
 * Copyright (c) 2009-2012 Cisco Systems, Inc.  All rights reserved.
 * Copyright (c) 2011      Oak Ridge National Labs.  All rights reserved.
 * Copyright (c) 2013-2020 Intel, Inc.  All rights reserved.
 * Copyright (c) 2015      Mellanox Technologies, Inc.  All rights reserved.
 * Copyright (c) 2019      IBM Corporation.  All rights reserved.
 * Copyright (c) 2021-2025 Nanook Consulting  All rights reserved.
 * Copyright (c) 2022      ParTec AG.  All rights reserved.
 * $COPYRIGHT$
 *
 * Additional copyrights may follow
 *
 * $HEADER$
 *
 */

#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));

    // get our rank
    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);

    // get our node ID
    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;
    }
    // rank=0 is on node 0, rank=1 on node 1
    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);

    // get our node ID with rank=WILDCARD - should fail!
    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);

    // get our peer's nodeID
    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;
    }
    // rank=0 is on node 0, rank=1 on node 1
    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);

    // get our appnum
    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;
    }
    // rank=0 is on node 0, rank=1 on node 1
    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);

    // get appnum with WILDCARD - should fail!
    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);

    // get peer's appnum
    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;
    }
    // rank=0 is in appnum 0, rank=1 is in appnum 1
    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:
    /* finalize us */
    rc = PMIx_Finalize(NULL, 0);
    fflush(stderr);
    return (0);
}