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
Currently the mpsc::SyncSender used to send audio monitoring data back to the GUI thread is showing up as a clear bottleneck. The profiling suggests that there's some inner lock contention going on that is causing delays that even exceed the cost of the FFT calculations. It might be worth looking into the crossbeam lock-free queues to solve this.
The text was updated successfully, but these errors were encountered:
Currently the
mpsc::SyncSender
used to send audio monitoring data back to the GUI thread is showing up as a clear bottleneck. The profiling suggests that there's some inner lock contention going on that is causing delays that even exceed the cost of the FFT calculations. It might be worth looking into the crossbeam lock-free queues to solve this.The text was updated successfully, but these errors were encountered: