1
1

Merge pull request #7204 from devreal/shmwin_contig

Correctly set baseptr in contiguous shared memory window with local size zero
Этот коммит содержится в:
Austen Lauria 2020-02-20 13:22:40 -05:00 коммит произвёл GitHub
родитель e8e089c681 06bbcf4fd6
Коммит dd5991f513
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

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

@ -341,7 +341,7 @@ component_select(struct ompi_win_t *win, void **base, size_t size, int disp_unit
}
module->sizes[i] = rbuf[i];
if (module->sizes[i]) {
if (module->sizes[i] || !module->noncontig) {
module->bases[i] = ((char *) module->segment_base) + total;
total += rbuf[i];
} else {