Fix pSync buffer initialization in IPC(#180)
- Initialize the entire pSync buffer with the default synchronization value
[ROCm/rocshmem commit: 6dba253890]
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
9cb96eafdb
Коммит
63d52b73c8
@@ -454,7 +454,7 @@ void IPCBackend::rocshmem_collective_init() {
|
||||
/*
|
||||
* Initialize the barrier synchronization array with default values.
|
||||
*/
|
||||
for (int i = 0; i < num_pes; i++) {
|
||||
for (int i = 0; i < ROCSHMEM_BARRIER_SYNC_SIZE; i++) {
|
||||
barrier_sync[i] = ROCSHMEM_SYNC_VALUE;
|
||||
}
|
||||
|
||||
|
||||
Ссылка в новой задаче
Block a user