-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Transplant hangs #94
Comments
If Matlab is idling, it probably crashed out of the Transplant loop. Regrettably, some Matlab errors can't be caught in a try-catch, and don't trigger You can try instrumenting your 2-3 minute function and see if it crashes before reaching the end. |
It seems that it locks when getting out of the function msg = decode_values(msg); in the transplant_remote.m. I have place a disp(msg) outside this function and when Matlab locks, the display does not show anything. How can I debug the Matlab file using transplant? I would like to pause matlab to check the problem. |
Interactive debugging is not possible. But you can just print intermediary values, or debug from a live Matlab session. |
I have a long running loop in python calling a Matlab codes that takes 2-3 minutes to execute. After about 20 of those loops, the whole thing just hangs. Matlab is not runing as CPU is 0%. It seems like zmq is waiting for a message that is never received.. any idea?
The text was updated successfully, but these errors were encountered: