-
Notifications
You must be signed in to change notification settings - Fork 104
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
Can‘t solve QP problem when dimension is too high. #37
Comments
i have the same error here. Have u solved this yet? |
I found the problem may cause by pre_factor_kkt function where use lu_solve(*Q_LU) function in solvers/pdipd/batch.py, which indicate torch.lu_solve can not solve this part. |
This example also gives "RuntimeError: CUDA error: an illegal memory access was encountered" on my side. Caused by memory issues and fix by reducing the precision from double to float. |
When I try this:
I get
How to solve this problem? Or it can't work when dimension is too high.
The text was updated successfully, but these errors were encountered: