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
Because of the GIL the GUI model does utilize only one CPU core. The processing threads and display thread virtually shares the same process, which leads to visible lags. It doesn't affect that much in the case when ONNX framework is used (it seems it has own multiprocessing implementation), but main processing thread still affects program latency.
Solution: rewrite GUI Model to true multiprocessing support.
The text was updated successfully, but these errors were encountered:
Because of the GIL the GUI model does utilize only one CPU core. The processing threads and display thread virtually shares the same process, which leads to visible lags. It doesn't affect that much in the case when ONNX framework is used (it seems it has own multiprocessing implementation), but main processing thread still affects program latency.
Solution: rewrite GUI Model to true multiprocessing support.
The text was updated successfully, but these errors were encountered: