-
Notifications
You must be signed in to change notification settings - Fork 24
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
Producer process has been terminated before all shared CUDA tensors released #9
Comments
Hey~Very appreciate to your great work! I also meet the problem of the 'producer process terminated', I wanna know when will the problem be fixed? |
Hi, we have tried some methods and still cannot eliminate this warning, but this should only appear after the program ends and does not affect the result. |
Same error here but I got the warning before the program ends, which returns no results. |
I have encountered the same issue, have you solved it? It seems "share_data.stop_mapping" is not correctly locked, the value sometimes changed from False to True in the last iteration of mapping.py int the while loop, just around kf_buffer.get(). In addition, when stop_mapping is set, the kf_buffer is not empty, which will make another round of do_mapping. Currently I simple skip the get() which causes error by try-except. |
I got the same error, with no results at the end. @garylidd any updates on this? |
if you move this to the top of the while loop in spin() mapping.py, it solves the issue. |
@Yuhanelle thank you so much. |
Have you solved this problem yet? |
#7 #6
The text was updated successfully, but these errors were encountered: