-
Notifications
You must be signed in to change notification settings - Fork 169
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
AttributeError in MPFuture #552
Comments
To the best of my knowledge, the only way this can occur is if two threads race for creating MPFuture. The first thread checked that it needs to initialize and began doing so; while it was at it, the second thread created MPFuture and, say, failed - and tried to delete it - but could not, because the first hasn't finished initializing yet. |
Still, i think that the attempt to run with AMD GPUs failed elsewhere, and this is only a symptom of the real problem |
This PR addresses the bug reported in #552 - or, at least, it should, since we cannot reproduce the problem locally.
This happens when a Petals server is ran on AMD GPUs:
The text was updated successfully, but these errors were encountered: