Poll the signal from one thread instead of all

[ROCm/rocshmem commit: 0659f8d93c]
Este commit está contenido en:
Brandon Potter
2024-09-27 15:17:57 -05:00
padre 25d7d7fccd
commit c097da70c4
+5 -2
Ver fichero
@@ -78,9 +78,12 @@ class Notifier {
}
}
while (detail::atomic::load<uint32_t, scope>(&signal_, orders_) != done) {
;
if (executor) {
while (detail::atomic::load<uint32_t, scope>(&signal_, orders_) != done) {
;
}
}
__syncthreads();
}
private: