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
This is an expected crash sadly. If OpenMP takes too long the GUI becomes unresponsive. This is entirely due to the fact that OpenMP is being called inside the main thread with window. Really it should should be called via QThread. Read here for more information:
This should stop the program from being killed by the OS. Of course some other window would need to be added while the main program updates and patiently waits for the thread to finish.
The text was updated successfully, but these errors were encountered:
OpenMP has been removed. While may still stand it is not, however, a problem right now. I'll leave the issue open in case I ever decide to put OpenMP back into rSearch.
This is an expected crash sadly. If OpenMP takes too long the GUI becomes unresponsive. This is entirely due to the fact that OpenMP is being called inside the main thread with window. Really it should should be called via QThread. Read here for more information:
https://mayaposch.wordpress.com/2011/11/01/how-to-really-truly-use-qthreads-the-full-explanation/
This should stop the program from being killed by the OS. Of course some other window would need to be added while the main program updates and patiently waits for the thread to finish.
The text was updated successfully, but these errors were encountered: