Poll the signal from one thread instead of all

This commit is contained in:
Brandon Potter
2024-09-27 15:17:57 -05:00
parent db221b022a
commit 0659f8d93c
+5 -2
Vedi File
@@ -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: