Should we switch to using multiprocessing instead of threading to get more CPU?
or would the overhead of inter-process communication swamp out the gains from having more CPU?
Should we use queues to talk between comm and core or shared memory?
It looks like shared memory is a good approach for communication between gui and core.
Original report by kevin_karplus (Bitbucket: kevin_karplus, ).
Should we switch to using multiprocessing instead of threading to get more CPU? or would the overhead of inter-process communication swamp out the gains from having more CPU?
Should we use queues to talk between comm and core or shared memory?
It looks like shared memory is a good approach for communication between gui and core.