File: hook_comm_method_fns.c

package info (click to toggle)
openmpi 5.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 202,312 kB
  • sloc: ansic: 612,441; makefile: 42,495; sh: 11,230; javascript: 9,244; f90: 7,052; java: 6,404; perl: 5,154; python: 1,856; lex: 740; fortran: 61; cpp: 20; tcl: 12
file content (999 lines) | stat: -rw-r--r-- 36,410 bytes parent folder | download | duplicates (2)
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
/*
 * Copyright (c) 2016-2022 IBM Corporation. All rights reserved.
 * Copyright (c) 2024      Jeffrey M. Squyres.  All rights reserved.
 * $COPYRIGHT$
 *
 * Additional copyrights may follow
 *
 * $HEADER$
 */

#include "ompi_config.h"

#include "hook_comm_method.h"

#ifdef HAVE_DLFCN_H
#include <dlfcn.h>
#endif

#include "opal/util/string_copy.h"
#include "ompi/communicator/communicator.h"
#include "ompi/mca/pml/pml.h"
#include "opal/mca/btl/btl.h"
#include "ompi/mca/pml/base/base.h"
#include "ompi/mca/bml/base/base.h"
#include "ompi/mca/mtl/base/base.h"

// For converting comm_method strings to comm_method id# and back.
// This starts as our local set of strings, but gets Allreduced into
// a global mapping so all the strings at all the ranks are represented.
#define COMM_METHOD_STRING_SIZE 200
#define MAX_COMM_METHODS 1000
#define UCX_TAG "ucx="

typedef struct {
    int n;
    char str[MAX_COMM_METHODS][COMM_METHOD_STRING_SIZE];
} comm_method_string_conversion_t;

static comm_method_string_conversion_t comm_method_string_conversion;

#define MODE_IS_PML 1
#define MODE_IS_MTL 2
#define MODE_IS_BTL 3

#define CALLED_FROM_MPI_INIT 1
#define CALLED_FROM_MPI_FINALIZE 2

// ----------------------------------------------------------------------------

// return the pml's module:component:name function pointer in fp
static char*
lookup_pml_name(void)
{
    return (char*) mca_pml_base_selected_component.pmlm_version.mca_component_name;
}
// return the mtl's module:component:name function pointer in fp
static char*
lookup_mtl_name(void)
{
    if (!ompi_mtl_base_selected_component) { return NULL; }
    return (char*) ompi_mtl_base_selected_component->mtl_version.mca_component_name;
}
// Find the send btl's module:component:name for the incoming comm,rank
static char*
lookup_btl_name_for_send(ompi_communicator_t* comm, int rank) {
    ompi_proc_t *dst_proc = ompi_group_peer_lookup_existing(comm->c_remote_group, rank);

    if (NULL == dst_proc) {
        return NULL;
    }

    mca_bml_base_endpoint_t* endpoint = mca_bml_base_get_endpoint(dst_proc);
    if (endpoint &&
        endpoint->btl_send.bml_btls &&
        endpoint->btl_send.bml_btls[0].btl)
    {
        return (char*)
            endpoint->btl_send.bml_btls[0].btl->btl_component->btl_version.mca_component_name;
    }
    return NULL;
}

// Use the above to lookup the mca_component_name for the rank's
// sending BTL/MTL/PML.  The extra 3rd argument returns whether
// MODE_IS_BTL / MTL / PML (can pass NULL if you don't want that info).
//
// And this one puts the result into malloced mem of size
//     COMM_METHOD_STRING_SIZE
// that the caller has to free.
static char *
comm_method_string(MPI_Comm comm, int rank, int *comm_mode) {
    char *p, *btl;
    char *string, *comma_delim = "";
    mca_pml_transports_t *transports = NULL;
    int name_length;
    unsigned int i;
    if (NULL != mca_pml.pml_get_transports) {
        transports = mca_pml.pml_get_transports(comm, rank);
    }
    if (NULL == transports) {
        string = malloc(COMM_METHOD_STRING_SIZE);
        if (!string) {
            return NULL;
        }
        p = lookup_pml_name();
        if (p && 0==strncmp("ob1", p, 4)) {      // BTL
            if (comm_mode) { *comm_mode = MODE_IS_BTL; }
            btl = lookup_btl_name_for_send(comm, rank);
            if (NULL == btl) {
                opal_string_copy(string, "n/a", COMM_METHOD_STRING_SIZE);
            } else {
                opal_string_copy(string, btl, COMM_METHOD_STRING_SIZE);
            }
        }
        else if (p && 0==strncmp("cm", p, 3)) {  // MTL
            if (comm_mode) { *comm_mode = MODE_IS_MTL; }
            opal_string_copy(string, lookup_mtl_name(), COMM_METHOD_STRING_SIZE);
        } else {                        // PML
            if (comm_mode) { *comm_mode = MODE_IS_PML; }
            if (p) {
                opal_string_copy(string, p, COMM_METHOD_STRING_SIZE);
            }
            else {
                opal_string_copy(string, "n/a", COMM_METHOD_STRING_SIZE);
            }
        }
    }
    else {
        /* Determine how much memory is needed to store UCX transport info */
        char *s = UCX_TAG;
        /* Allocate storage to store UCX transport info, accounting for
         * trailing '\0' in UCX_TAG and ',' and ';' delimiting each transport string
         * then build the info string */
        name_length = strlen(s) + 1;
        for (i = 0; i < transports->count; i++) {
            name_length = name_length + strlen(transports->entries[i].transport_name) +
                                        strlen(transports->entries[i].device_name) + 2;
        }
        string = malloc(name_length);
        if (!string) {
            return NULL;
        }
        strcpy(string, s);
        for (i = 0; i < transports->count; i++) {
            strcat(string, comma_delim);
            comma_delim = ",";
            strcat(string, transports->entries[i].transport_name);
            strcat(string, ";");
            strcat(string, transports->entries[i].device_name);
        }
        free(transports->entries);
        free(transports);
    }
    if (comm_mode) {
        // UCX is used for PML mode only
        *comm_mode = MODE_IS_PML;
    }
    return string;
}

// ----------------------------------------------------------------------------

// Managing the comm_method_string_conversion structure
// and using it to convert strings to/from id numbers:

// The data should be
//     string 0 ==       "n/a" for unconnected / unknown
//     string 1,2,... == "tcp" "self", etc, sorted
// self is important enough we want to make sure it's always in the list
static void
init_string_to_conversion_struct(comm_method_string_conversion_t *data)
{
    data->n = 0;
    strcpy(data->str[data->n], "n/a");
    ++(data->n);
    strcpy(data->str[data->n], "self");
    ++(data->n);
}

static int
lookup_string_in_conversion_struct(comm_method_string_conversion_t *data, char *string)
{
    int i;
    for (i=0; i<data->n; ++i) {
        if (0==strcmp(data->str[i], string)) {
            return i;
        }
    }
    return 0;
}

// For qsort of the str[] array in a comm_method_string_conversion_t
static int mycompar(const void *a, const void *b) {
    return strcmp(a, b);
}

static void
add_string_to_conversion_struct(comm_method_string_conversion_t *data, char *string)
{
    int i;
    if (NULL == string || 0 == strcmp(string, "n/a")) { return; }

    i = lookup_string_in_conversion_struct(data, string);
    if (i == 0) { // didn't find string in list, so add it
        if (data->n < MAX_COMM_METHODS) {
            strncpy(data->str[data->n], string, COMM_METHOD_STRING_SIZE);
            data->str[data->n][COMM_METHOD_STRING_SIZE - 1] = '\0';
            ++(data->n);
        }
    }
}

// For MPI_Allreduce of a comm_method_string_conversion_t
static void myfn(void* invec, void* inoutvec, int *len, MPI_Datatype *dt) {
    comm_method_string_conversion_t *a, *b;
    int i, j;

    for (i=0; i<*len; ++i) {
        b = &((comm_method_string_conversion_t*)invec)[i];
        a = &((comm_method_string_conversion_t*)inoutvec)[i];
        for (j=0; j<b->n; ++j) { // for each entry j in 'b', add it to 'a'
            add_string_to_conversion_struct(a, b->str[j]);
        }
    }
}

// ----------------------------------------------------------------------------

// Use the static global comm_method_string_conversion to convert
// between comm_method string and id number

// This might convert "pami" for example to 1, "yalla" to 2, etc.
static int
string_to_comm_method(char *str) {
    // default to "n/a" for any bad or unrecognized inputs
    if (!str || !str[0]) { return 0; }

    return lookup_string_in_conversion_struct(&comm_method_string_conversion, str);
}

static char *
comm_method_to_string(int id) {
    return comm_method_string_conversion.str[id];
}

static int
comm_method(MPI_Comm comm, int rank) {
    char *p = comm_method_string(comm, rank, NULL);
    int id = string_to_comm_method(p);
    free(p);
    return id;
}

#define COMM_METHOD_SELF (string_to_comm_method("self"))
#define NUM_COMM_METHODS (comm_method_string_conversion.n)

// ----------------------------------------------------------------------------

typedef void (*VoidFuncPtr)(void); // a function pointer to a function that takes no arguments and returns void.
static char* comm_method_string(MPI_Comm comm, int rank, int *comm_mode);
static int comm_method(MPI_Comm comm, int rank);
static char* comm_method_to_string(int method);
static int icompar(const void *a, const void *b);
static void abbreviate_list_into_string(char *str, int max, int *list, int nlist);
static void ompi_report_comm_methods(int called_from_location);

void ompi_hook_comm_method_mpi_init_bottom(int argc, char **argv, int requested, int *provided)
{
    if( mca_hook_comm_method_enable_mpi_init ) {
        ompi_report_comm_methods( CALLED_FROM_MPI_INIT );
    }
}

void ompi_hook_comm_method_mpi_finalize_top(void)
{
    if( mca_hook_comm_method_enable_mpi_finalize ) {
        ompi_report_comm_methods( CALLED_FROM_MPI_FINALIZE );
    }
}

// ----------------------------------------------------------------------------

static int
icompar(const void *a, const void *b) {
  if (*(int*)a < *(int*)b) { return -1; }
  if (*(int*)a > *(int*)b) { return 1; }
  return 0;
}

// Input list[] is expected to be sorted
static void
abbreviate_list_into_string(char *str, int max, int *list, int nlist)
{
    int lo, hi;
    int i;
    int per, tmp;

/*
 *  How much space do we need in strings to store rank numbers.
 *  A 10000 rank run needs more digits to write the rank numbers in than
 *  a 4 rank job.
 */
    per = 1;
    tmp = list[nlist-1];
    while (tmp >= 10) { ++per; tmp /= 10; }

    str[0] = 0;
    lo = hi = -1;
    for (i=0; i<nlist; ++i) {
        if (lo==-1) {
            lo = list[i];
            hi = list[i];
        }
/*
 *  Use hi,lo to specify contiguous chunks.  But if the current i is
 *  the start of a new contiguous chunk, print the previous hi,lo chunk.
 *  In general we can tell if we're allowed to write more into the string
 *  based on whether the previous iteration wrote ".." onto the end.
 */
        if (list[i] == hi+1) {
            hi = list[i];
        } else if (list[i] > hi) {
            if (strlen(str)==0 || str[strlen(str)-1] != '.') {
                if (strlen(str) != 0) {
                    strcpy(&str[strlen(str)], ", ");
                }
                if (lo != hi) {
                    sprintf(&str[strlen(str)], "%d - %d", lo, hi);
                } else {
                    sprintf(&str[strlen(str)], "%d", lo);
                }
            }
/*
 *  If we've almost written to the end of the string, and we haven't
 *  already written ".." to indicate we're not writing amy more, then
 *  add the "..".  Also set hi=lo=i since the data we just wrote is
 *  for the previous contiguous chunk, and the current i is the start
 *  of the next chunk.
 */
            if (((int)strlen(str)) >= max - 5 - 2*per
                &&
                (strlen(str) == 0 || str[strlen(str)-1] != '.'))
            {
                strcpy(&str[strlen(str)], ", ..");
                break;
            }
            hi = lo = list[i];
        }
    }
    if (strlen(str)==0 || str[strlen(str)-1] != '.') {
        if (strlen(str)!=0) {
            strcpy(&str[strlen(str)], ", ");
        }
        if (lo != hi) {
            sprintf(&str[strlen(str)], "%d - %d", lo, hi);
        } else {
            sprintf(&str[strlen(str)], "%d", lo);
        }
    }
}

// Input argument tells where we're being called from:
// 1 for init, 2 for finalize.
// The other implicit input is an environment variable we look at.
// When activated from init: we establish connections before printing.
// When activated from finalize: we just print whatever info is available.
static void
ompi_report_comm_methods(int called_from_location)
{
    int numhosts, i, j, k, n;
    int max2Dprottable = 12;
    int max2D1Cprottable = 36;
    int hpmp_myrank;
    int mylocalrank, nlocalranks, myleaderrank, nleaderranks;
    int ret;
    ompi_communicator_t *local_comm, *leader_comm;
    int *method;
    unsigned char *methods_used;
    char *hoststring;
    char **allhoststrings;
    int comm_mode; // MODE_IS_BTL / MTL / PML

// early return in the case of spawn
    // PMPI_Comm_get_parent(&parent);
    if (ompi_mpi_comm_parent != MPI_COMM_NULL) { return; }

    hpmp_myrank = ompi_comm_rank(MPI_COMM_WORLD);
    // hpmp_nprocs = ompi_comm_size(MPI_COMM_WORLD);

    max2Dprottable = mca_hook_comm_method_max;
    max2D1Cprottable = 3 * max2Dprottable;
    if (mca_hook_comm_method_brief) {
        // force only the short summary output to be printed with no 2d table:
        max2Dprottable = 0;
        max2D1Cprottable = 0;
    }

// Gathering layout data the same way osc_rdma_component.c does
    ret = ompi_comm_split_type(MPI_COMM_WORLD, MPI_COMM_TYPE_SHARED, 0, NULL,
      &local_comm);
    if (OPAL_UNLIKELY(OMPI_SUCCESS != ret)) {
        return;
    }
    mylocalrank = ompi_comm_rank(local_comm);
    nlocalranks = ompi_comm_size(local_comm);

    ret = ompi_comm_split(MPI_COMM_WORLD,
        (0 == mylocalrank) ? 0 : MPI_UNDEFINED,
        hpmp_myrank, &leader_comm, false);
    if (OPAL_UNLIKELY(OMPI_SUCCESS != ret)) {
        ompi_comm_free(&local_comm);
        return;
    }

// Non-host-leaders return early.
    if (mylocalrank != 0) {
        ompi_comm_free(&local_comm);
        return;
    }
// -------------------------------------------------
// Only host-leaders exist from this point on.
// -------------------------------------------------
    myleaderrank = ompi_comm_rank(leader_comm);
    nleaderranks = numhosts = ompi_comm_size(leader_comm);

/*
 *  Allocate space for each rank to store its communication method
 *  on a per-host basis.  But rank 0 gets enough space to store the
 *  data for all pairs of hosts.
 */
    method = malloc(numhosts * sizeof(int) * (hpmp_myrank?1:numhosts));
    if (!method) {
        ompi_comm_free(&local_comm);
        ompi_comm_free(&leader_comm);
        return;
    }

// Each host leader figures out a string of basic info for its host
// in hoststring.  (allocated at all host leaders, can be different sizes)

    {
        int len;
        int *ranklist; // comm-world ranks contained in local_comm
                       // sorted into comm-world order (although
                       // local_comm should already be constructed
                       // in that way)
        int *ranklist_in;

        ompi_group_t *local_group, *world_group;
        ompi_comm_group(local_comm, &local_group);
        ompi_comm_group(MPI_COMM_WORLD, &world_group);
        ranklist = malloc(nlocalranks * sizeof(int) * 2);
        ranklist_in = ranklist + nlocalranks;
        for (i=0; i<nlocalranks; ++i) { ranklist_in[i] = i; }
        ompi_group_translate_ranks(local_group, nlocalranks, ranklist_in,
            world_group, ranklist);
        qsort(ranklist, nlocalranks, sizeof(int), &icompar); // hope redundant
        ompi_group_free(&local_group);
        ompi_group_free(&world_group);

        len = strlen(opal_process_info.nodename) + 100;
        hoststring  = malloc(len + 1);
        sprintf(hoststring, "Host %d [%s] ranks ",
            myleaderrank, opal_process_info.nodename);

        abbreviate_list_into_string(&hoststring[strlen(hoststring)],
            len - strlen(hoststring), ranklist, nlocalranks);
        free(ranklist);
    }

// If we're running during init, establish connections between all peers
// (in leader_comm, which is all the ranks that are here at this point)
    if (called_from_location == 1) {
        int speer = (myleaderrank + 1) % nleaderranks;
        int rpeer = (myleaderrank - 1 + nleaderranks) % nleaderranks;
        for (i=0; i<=nleaderranks/2; ++i) {
// (Examples to show why the loop is i<=nleaderranks/2)
// np4 : 0 1 2 3    i=0 0c0  i=1 0c0&1&3  i=2 0c0&1&3&2
// np5 : 0 1 2 3 4  i=0 0c0  i=1 0c0&1&4  i=2 0c0&1&4&2&3
            MPI_Request sreq, rreq;
            MPI_Status status;
            int sbuf, rbuf;
            sbuf = rbuf = 0;
            MCA_PML_CALL(isend(&sbuf, 1, MPI_INT, speer, 99,
                    MCA_PML_BASE_SEND_STANDARD,
                    leader_comm, &sreq));
            MCA_PML_CALL(irecv(&rbuf, 1, MPI_INT, rpeer, 99,
                    leader_comm, &rreq));
            ompi_request_wait(&sreq, &status);
            ompi_request_wait(&rreq, &status);
            speer = (speer + 1) % nleaderranks;
            rpeer = (rpeer - 1) % nleaderranks;
            if (rpeer < 0) {
                rpeer = nleaderranks - 1;
            }
        }
    }

// Each host will have a list of comm_method strings, and in
// order to associate them with numbers we'll need to Allreduce
// to get a comprehensive list of strings across the ranks
    init_string_to_conversion_struct(&comm_method_string_conversion);
    for (i=0; i<nleaderranks; ++i) {
        char *p = comm_method_string(leader_comm, i, &comm_mode);
        add_string_to_conversion_struct(&comm_method_string_conversion, p);
        free(p);
    }
    if (nlocalranks > 1) {
        char *p = comm_method_string(local_comm, 1, NULL);
        add_string_to_conversion_struct(&comm_method_string_conversion, p);
        free(p);
    }

    MPI_Datatype mydt;
    MPI_Op myop;
    MPI_Type_contiguous(sizeof(comm_method_string_conversion_t), MPI_BYTE, &mydt);
    MPI_Type_commit(&mydt);
    MPI_Op_create(myfn, 1, &myop);
    leader_comm->c_coll->coll_allreduce(
        MPI_IN_PLACE, (void*)&comm_method_string_conversion, 1, mydt, myop, leader_comm,
            leader_comm->c_coll->coll_allreduce_module);
    MPI_Op_free(&myop);
    MPI_Type_free(&mydt);

    // Sort communication method string arrays after reduction
    qsort(&comm_method_string_conversion.str[1],
          comm_method_string_conversion.n - 1, COMM_METHOD_STRING_SIZE, &mycompar);

// Each host leader fills in a "numhosts" sized array method[] of
// how it communicates with each peer.
    for (i=0; i<nleaderranks; ++i) {
        method[i] = comm_method(leader_comm, i);

// For looking at our own local host though, we don't really want "self"
// unless there's only one rank and "self" is the best answer. So if
// there's more than one rank on our host, we get our local-host's
// communication method for a neighbor on this host.
        if ((i == myleaderrank) && (nlocalranks > 1)) {
            method[i] = comm_method(local_comm, 1);
        }
    }

// Gather the strings and the methods at rank 0.
// The gatherv of the strings takes a few steps since we have to get
// the sizes first and allocate the receiving string.
    {
        int len, *lens, *disps;

        // First get the array of host strings (host names and task lists) 
        // for all nodes.
        len = strlen(hoststring) + 1;
        if (myleaderrank == 0) {
            lens = malloc(nleaderranks * sizeof(int));
            disps = malloc(nleaderranks * sizeof(int));
        } else {
            lens = disps = NULL;
        }
        leader_comm->c_coll->coll_gather(
            &len, 1, MPI_INT,
            lens, 1, MPI_INT,
            0, leader_comm, leader_comm->c_coll->coll_gather_module);
        if (myleaderrank == 0) {
            int tlen = 0;
            char *p;
            for (i=0; i<nleaderranks; ++i) {
                disps[i] = tlen;
                tlen += lens[i];
            }
            allhoststrings = malloc(nleaderranks * sizeof(char*)  +  tlen);
            p = (char*) (allhoststrings + nleaderranks);
            for (i=0; i<nleaderranks; ++i) {
                allhoststrings[i] = p;
                p += lens[i];
            }
            leader_comm->c_coll->coll_gatherv(
                hoststring, strlen(hoststring) + 1, MPI_CHAR,
                &allhoststrings[0][0], lens, disps, MPI_CHAR,
                0, leader_comm, leader_comm->c_coll->coll_gatherv_module);
        } else {
            // matching above call from rank 0, just &allhoststrings[0][0]
            // isn't legal here, and those args aren't used at non-root anyway
            leader_comm->c_coll->coll_gatherv(
                hoststring, strlen(hoststring) + 1, MPI_CHAR,
                NULL, NULL, NULL, MPI_CHAR,
                0, leader_comm, leader_comm->c_coll->coll_gatherv_module);
        }
        if (myleaderrank == 0) {
            free(lens);
            free(disps);
        }

        // and a simpler gather for the arrays of communication method indices
        // for all nodes.
        leader_comm->c_coll->coll_gather(
            method, nleaderranks, MPI_INT,
            method, nleaderranks, MPI_INT,
            0, leader_comm, leader_comm->c_coll->coll_gather_module);
    }
    ompi_comm_free(&local_comm);
    ompi_comm_free(&leader_comm);

// Interception for testing purposes. Let rank-0 meddle with all its method[]
// settings, this is only for testing, eg to make sure the printing comes out
// right.
    if (myleaderrank == 0) {
        if (mca_hook_comm_method_fakefile) {
            FILE *fp;
            int setting;
            fp = fopen(mca_hook_comm_method_fakefile, "r");
            for (i=0; i<nleaderranks; ++i) {
                for (k=0; k<nleaderranks; ++k) {
                    if (fscanf(fp, "%d", &setting) != 1) {
                        break;
                    }
                    // let -1 mean "use existing (real) setting"
                    if (setting != -1) {
                        method[i * nleaderranks + k] = setting;
                    }
                }
                if (fscanf(fp, "\n") != 0) {
                    break;
                }
            }
            fclose(fp);
        }
    }

// Print
// 1. the hoststring each host contributed
// 2. the 2d table in method[] if it isn't too big
// 3. summary of on/off host interconnect, and list the exceptions
    if (myleaderrank == 0) {
// 1: hoststring for each host
        for (i=0; i<nleaderranks; ++i) {
          printf("%s\n", allhoststrings[i]);
        }
        printf("\n");
// 2: 2d table
        if (nleaderranks <= max2Dprottable) {
            char *str, *p;
            int tmp, per, has_ucx_transport;
            int strlens[NUM_COMM_METHODS];

            // characters per entry in the 2d table, must be large enough
            // for the digits needed for host numbers, and for whatever is
            // the longest string used in the table, plus a space.
            for (i=0; i<NUM_COMM_METHODS; ++i) {
                p = comm_method_to_string(i);
                if (0 == strncmp(p, UCX_TAG, strlen(UCX_TAG))) {
                    // Assume no more than 1000 UCX transport strings
                    // See PML_UCX_MAX_TRANSPORT_ENTRIES in pml_ucx.c
                    strlens[i] = strlen("ucx[000]");
                }
                else {
                    strlens[i] = strlen(p);
                }
            }
            per = 2;
            tmp = nleaderranks;
            while (tmp >= 10) { ++per; tmp /= 10; }
            for (i=0; i<nleaderranks; ++i) {
                for (k=0; k<nleaderranks; ++k) {
                    tmp = strlens[method[i * nleaderranks + k]];
                    if (tmp+1 > per) { per = tmp+1; }
                }
            }

            str = malloc(nleaderranks * per + 1);
            p = str;
            for (i=0; i<nleaderranks; ++i) {
                sprintf(p, "%d", i);
                for (j=(int)strlen(p); j<per; ++j) {
                    p[j] = ' ';
                }
                p[j] = 0;
                p += j;
            }
            // Use a bitmap to trace which UCX transport strings are used.
            n = (nleaderranks + 7) / 8;
            methods_used = malloc(n * sizeof(unsigned char));
            memset(methods_used, 0, n);
            tmp = (int)strlen(str);
            --p;
            while (p>=str && ((*p)==' ')) { *(p--)=0; }
            printf(" host | %s\n", str);
            memset(str, (int)'=', tmp);
            str[tmp] = 0;
            printf("======|=%s\n", str);
            has_ucx_transport = 0;

            for (i=0; i<nleaderranks; ++i) {
                str[0] = 0;
                p = str;
                for (k=0; k<nleaderranks; ++k) {
                    char *method_string;
                    char ucx_label[20];
                    
                    method_string = comm_method_to_string(method[i * nleaderranks + k]);
                    if (0 == strncmp(method_string, UCX_TAG, strlen(UCX_TAG))) {
                        n = lookup_string_in_conversion_struct(&comm_method_string_conversion,
                                                               method_string);
                        sprintf(ucx_label, "ucx[%3d]", n);
                        strcat(p, ucx_label);
                        methods_used[n / 8] |= (1 << (n % 8));
                        has_ucx_transport = 1;
                    }
                    else {
                        strcat(p, method_string);
                    }
                    for (j=(int)strlen(p); j<per; ++j) {
                        p[j] = ' ';
                    }
                    p[j] = 0;
                    p += j;
                }
                --p;
                while (p>str && *p==' ') { *(p--)=0; }
                printf("%5d : %s\n", i, str);
            }
            printf("\n");
            free(str);
            if (has_ucx_transport) {
                printf("UCX Transport/Device\n");
                for (i = 0; i < comm_method_string_conversion.n; i++) {
                    // Check bitmap to check if method was used
                    if (methods_used[i / 8] & (1 << (i % 8))) {
                        p = comm_method_to_string(i);
                        if (0 == strncmp(p, UCX_TAG, strlen(UCX_TAG))) {
                            char *temp_str, *token;
                            n = lookup_string_in_conversion_struct(&comm_method_string_conversion, p);
                            printf("ucx[%3d]:\n", n);
                            temp_str = strdup(p + 4);
                            token = strtok(temp_str, ",");
                            while (NULL != token) {
                                p = strchr(token, ';');
                                if (NULL == p) {
                                    printf("    %-16s\n", token);
                                }
                                else {
                                    *p = '\0';
                                    printf("    %-16s %-16s\n", token, p + 1);
                                }
                                token = strtok(NULL, ",");
                            }
                            free(temp_str);
                        }
                    }
                }
            }
            free(methods_used);
        }
        else if (nleaderranks <= max2D1Cprottable) {
            char *str, *p;
            int tmp, per, done;
            char char_code[NUM_COMM_METHODS], next_char;
            int method_count[NUM_COMM_METHODS];

            // characters for the number column in the 2d table,
            // must be large enough for the digits needed for host numbers
            per = 2;
            tmp = nleaderranks;
            while (tmp >= 10) { ++per; tmp /= 10; }

            // pick a character code for each comm method based on
            // how many times it's in the table, use 'A' for the least common
            for (i=0; i<NUM_COMM_METHODS; ++i) {
                char_code[i] = 0;
                method_count[i] = 0;
            }
            for (i=0; i<nleaderranks; ++i) {
                for (k=0; k<nleaderranks; ++k) {
                    tmp = method[i * nleaderranks + k];
                    ++method_count[tmp];
                }
            }
            next_char = 'A';
            done = 0;
            while (!done) {
                int next_idx = -1;
                done = 1;
                for (i=0; i<NUM_COMM_METHODS; ++i) {
                    if (!char_code[i] && method_count[i]) {
                        done = 0;
                        if ( (next_idx == -1) ||
                             (method_count[i] < method_count[next_idx]))
                        {
                            next_idx = i;
                        }
                    }
                }
                if (next_idx != -1) {
                    char_code[next_idx] = next_char;
                    ++next_char;
                }
            }

            str = malloc(per + 32 + nleaderranks * 2 + 1);
            p = str;
            sprintf(p, "0 1 2 3 ");
            p += 8;
            for (i=4; i<nleaderranks; i+=4) {
                sprintf(p, "%d", i);
                for (j=(int)strlen(p); j<8; ++j) {
                    p[j] = ' ';
                }
                p[j] = 0;
                p += j;
            }
            --p;
            while (p>=str && ((*p)==' ')) { *(p--)=0; }
            tmp = (int)strlen(str) + 2;
            printf(" host | %s\n", str);
            memset(str, (int)'=', tmp);
            str[tmp] = 0;
            printf("======|=%s\n", str);

            for (i=0; i<nleaderranks; ++i) {
                str[0] = 0;
                p = str;
                for (k=0; k<nleaderranks; ++k) {
                    p[0] = char_code[method[i * nleaderranks + k]];
                    p[1] = ' ';
                    p[2] = 0;
                    p += 2;
                }
                --p;
                while (p>str && *p==' ') { *(p--)=0; }
                printf("%5d : %s\n", i, str);
            }
            free(str);
            for (i=0; i<NUM_COMM_METHODS; ++i) {
                for (k=0; k<NUM_COMM_METHODS; ++k) {
                    if (char_code[k] == 'A' + i) {
                        printf("key: %c == %s\n", char_code[k],
                            comm_method_to_string(k));
                    }
                }
            }
            printf("\n");
        }
// 3: abbreviated summary of interconnect and outliers
// - check diagonal for uniformity + self, save majority method
// - check non-diagonal for uniformity, save majority method
// - print ranks with non-majority settings
        {
            int method_count[NUM_COMM_METHODS];
            int majority_method_onhost;
            int majority_method_offhost;
            int uniformity_onhost;
            int uniformity_offhost;
            int any_self = 0;

            char *btl_etc = "btl";
            if (comm_mode == MODE_IS_MTL) { btl_etc = "mtl"; }
            if (comm_mode == MODE_IS_PML) { btl_etc = "pml"; }
            printf("Connection summary: (%s)\n", btl_etc);

            majority_method_onhost = -1;
            uniformity_onhost = 1;
            for (i=0; i<NUM_COMM_METHODS; ++i) { method_count[i] = 0; }
            for (i=0; i<nleaderranks; ++i) {
                int this_method = method[i * nleaderranks  +  i];
                ++method_count[this_method];

                if (this_method == 0) { continue; }

                if (majority_method_onhost == -1 &&
                    this_method != COMM_METHOD_SELF)
                {
                    majority_method_onhost = this_method;
                }
                if (majority_method_onhost != -1 &&
                    this_method != majority_method_onhost &&
                    this_method != COMM_METHOD_SELF)
                {
                    uniformity_onhost = 0;
                }
            }
            // the above majority_method_onhost isn't yet correct
            majority_method_onhost = COMM_METHOD_SELF;
            for (i=0; i<NUM_COMM_METHODS; ++i) {
                if (method_count[i] > 0 &&
                    majority_method_onhost == COMM_METHOD_SELF)
                {
                    majority_method_onhost = i;
                }
                if (method_count[i] > method_count[majority_method_onhost]) {
                    if (i != COMM_METHOD_SELF) {
                        majority_method_onhost = i;
                    }
                }
            }
            if (method_count[COMM_METHOD_SELF] > 0) { any_self = 1; }

            majority_method_offhost = -1;
            uniformity_offhost = 1;
            for (i=0; i<NUM_COMM_METHODS; ++i) { method_count[i] = 0; }
            for (i=0; i<nleaderranks; ++i) {
                for (k=0; k<nleaderranks; ++k) {
                    if (k == i) continue; // this i/k loop is for all off-host

                    int this_method = method[i * nleaderranks  +  k];
                    ++method_count[this_method];

                    if (this_method == 0) { continue; }

                    if (majority_method_offhost == -1) {
                        majority_method_offhost = this_method;
                    }
                    if (this_method != majority_method_offhost)
                    {
                        uniformity_offhost = 0;
                    }
                }
            }
            // the above majority_method_offhost isn't yet correct
            majority_method_offhost = 0;
            for (i=0; i<NUM_COMM_METHODS; ++i) {
                if (method_count[i] > 0 && majority_method_offhost == 0) {
                    majority_method_offhost = i;
                }
                if (method_count[i] > method_count[majority_method_offhost]) {
                    majority_method_offhost = i;
                }
            }

            char *all_or_most = "all";
            char *or_self = "";
            if (!uniformity_onhost) {
                all_or_most = "most";
            }
            if ((majority_method_onhost != COMM_METHOD_SELF) && any_self) {
                or_self = " or self";
            }
            printf("  on-host:  %s connections are %s%s\n", all_or_most,
                comm_method_to_string(majority_method_onhost), or_self);

            all_or_most = "all";
            if (!uniformity_offhost) {
                all_or_most = "most";
            }
            printf("  off-host: %s connections are %s\n", all_or_most,
                comm_method_to_string(majority_method_offhost));

            if (!uniformity_onhost || !uniformity_offhost) {
                printf("Exceptions:\n");
                for (i=0; i<nleaderranks; ++i) {
                    int is_nonconformist = 0;
                    for (k=0; k<NUM_COMM_METHODS; ++k) { method_count[k] = 0; }
                    // count how many non-majority methods show up
                    for (k=0; k<nleaderranks; ++k) {
                        int this_method = method[i * nleaderranks  +  k];

                        ++method_count[this_method];

                        if (k == i &&
                            this_method != majority_method_onhost &&
                            this_method != COMM_METHOD_SELF &&
                            this_method != 0)
                        {
                            is_nonconformist = 1;
                        }
                        if (k != i &&
                            this_method != majority_method_offhost &&
                            this_method != 0)
                        {
                            is_nonconformist = 1;
                        }
                    }
                    if (is_nonconformist) {
                        char *str = malloc(1024);
//                      int first = 1;
                        sprintf(str, "  host %d:", i);
                        for (k=0; k<NUM_COMM_METHODS; ++k) {
                            if (method_count[k] > 0) {
//                              if (!first) {
//                                  strcat(str, " /");
//                              }
                                sprintf(&str[strlen(str)],
                                    " [%dx %s]",
                                    method_count[k],
                                    comm_method_to_string(k));
//                              first = 0;
                            }
                        }
                        printf("%s\n", str);
                        free(str);
                    }
                }
            }
            printf("\n");
        }
    }

    if (myleaderrank == 0) {
        free(allhoststrings);
    }
    free(method);
}