Fix a RCCL initialization to avoid a deadlock (#136)

Also fixes: 

- crash while finalizing rocprof-sys-causal
This commit is contained in:
ajanicijamd
2025-03-19 14:48:04 -04:00
committed by GitHub
parent b621691a53
commit 26bb604215
7 changed files with 77 additions and 19 deletions
@@ -855,7 +855,6 @@ sample_selection(size_t _nitr, size_t _wait_ns)
while(eligible_pc_idx.load(std::memory_order_relaxed) == 0)
{
if(get_state() >= State::Finalized) return selected_entry{};
std::this_thread::yield();
std::this_thread::sleep_for(std::chrono::nanoseconds{ _wait_ns });
}