1
1
/*
2
- * Copyright (c) 2016-2017 Inria. All rights reserved.
2
+ * Copyright (c) 2016-2018 Inria. All rights reserved.
3
3
* Copyright (c) 2017 Research Organization for Information Science
4
4
* and Technology (RIST). All rights reserved.
5
5
* $COPYRIGHT$
@@ -46,7 +46,7 @@ int mca_coll_monitoring_neighbor_allgatherv(const void *sbuf, int scount,
46
46
* If this fails the destination is not part of my MPI_COM_WORLD
47
47
* Lookup its name in the rank hastable to get its MPI_COMM_WORLD rank
48
48
*/
49
- if ( OPAL_SUCCESS == mca_common_monitoring_get_world_rank (srank , comm , & world_rank ) ) {
49
+ if ( OPAL_SUCCESS == mca_common_monitoring_get_world_rank (srank , comm -> c_remote_group , & world_rank ) ) {
50
50
mca_common_monitoring_record_coll (world_rank , data_size );
51
51
data_size_aggreg += data_size ;
52
52
}
@@ -57,7 +57,7 @@ int mca_coll_monitoring_neighbor_allgatherv(const void *sbuf, int scount,
57
57
* If this fails the destination is not part of my MPI_COM_WORLD
58
58
* Lookup its name in the rank hastable to get its MPI_COMM_WORLD rank
59
59
*/
60
- if ( OPAL_SUCCESS == mca_common_monitoring_get_world_rank (drank , comm , & world_rank ) ) {
60
+ if ( OPAL_SUCCESS == mca_common_monitoring_get_world_rank (drank , comm -> c_remote_group , & world_rank ) ) {
61
61
mca_common_monitoring_record_coll (world_rank , data_size );
62
62
data_size_aggreg += data_size ;
63
63
}
@@ -100,7 +100,7 @@ int mca_coll_monitoring_ineighbor_allgatherv(const void *sbuf, int scount,
100
100
* If this fails the destination is not part of my MPI_COM_WORLD
101
101
* Lookup its name in the rank hastable to get its MPI_COMM_WORLD rank
102
102
*/
103
- if ( OPAL_SUCCESS == mca_common_monitoring_get_world_rank (srank , comm , & world_rank ) ) {
103
+ if ( OPAL_SUCCESS == mca_common_monitoring_get_world_rank (srank , comm -> c_remote_group , & world_rank ) ) {
104
104
mca_common_monitoring_record_coll (world_rank , data_size );
105
105
data_size_aggreg += data_size ;
106
106
}
@@ -111,7 +111,7 @@ int mca_coll_monitoring_ineighbor_allgatherv(const void *sbuf, int scount,
111
111
* If this fails the destination is not part of my MPI_COM_WORLD
112
112
* Lookup its name in the rank hastable to get its MPI_COMM_WORLD rank
113
113
*/
114
- if ( OPAL_SUCCESS == mca_common_monitoring_get_world_rank (drank , comm , & world_rank ) ) {
114
+ if ( OPAL_SUCCESS == mca_common_monitoring_get_world_rank (drank , comm -> c_remote_group , & world_rank ) ) {
115
115
mca_common_monitoring_record_coll (world_rank , data_size );
116
116
data_size_aggreg += data_size ;
117
117
}
0 commit comments