We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b7215a commit 0a02491Copy full SHA for 0a02491
ompi/mca/coll/base/coll_base_alltoallv.c
@@ -92,7 +92,7 @@ mca_coll_base_alltoallv_intra_basic_inplace(const void *rbuf, ompi_count_array_t
92
if( OPAL_UNLIKELY(opal_local_arch != ompi_proc->super.proc_convertor->master->remote_arch)) {
93
packed_size = opal_datatype_compute_remote_size(&rdtype->super,
94
ompi_proc->super.proc_convertor->master->remote_sizes);
95
- packed_size *= rcounts[right];
+ packed_size *= ompi_count_array_get(rcounts, right);
96
max_size = packed_size > max_size ? packed_size : max_size;
97
}
98
0 commit comments