You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[SYCL RTC] Make ToolchainFSstatic thread_local (#20382)
#19924 essentially made it `static`
but that caused data races that were later fixed by
#20360 changing each use of it to
re-create this in-memory FS (essentially, "removing" `static`),
incurring significant performance costs.
This PR addresses the issue by "adding" `thread_local` instead of
"removing" `static` allowing us to have both no crashes due to data
races and minimal overhead.
No tests added as the one from #20360
is verifying this.
0 commit comments