1
1

* if start_rank == end_rank, there doesn't seem to be a requirement that

stride == 1, and the Intel tests explicitly test the case with
  strides != 1, expecting them to work

This commit was SVN r7411.
Этот коммит содержится в:
Brian Barrett 2005-09-16 18:44:21 +00:00
родитель b3cc58b681
Коммит c87babb565

Просмотреть файл

@ -131,7 +131,7 @@ int MPI_Group_range_excl(MPI_Group group, int n_triplets, int ranges[][3],
} else {
/* first_rank == last_rank */
index = first_rank;
if (elements_int_list[index] != -1 || stride != 1) {
if (elements_int_list[index] != -1) {
free(elements_int_list);
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_RANK,
FUNC_NAME);