We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
InverseLBFGSOperator
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
This operator is used in JSOSolvers https://github.com/JuliaSmoothOptimizers/JSOSolvers.jl/blob/5c08163ee594d8f8d7e12a98b14f4ed7cd22424e/src/lbfgs.jl#L87C3-L87C63 but nothing allows GPU computation
The text was updated successfully, but these errors were encountered:
The solution is probably #258, but needs to be revisited.
Sorry, something went wrong.
We would like to run lbfgs from JSOSolvers.jl with @michel2323 on GPU. What is the issue with InverseLBFGSOperator except the type in the workspace?
lbfgs
Sorry, I don’t understand the question
Sorry I should reformulate my question. Why is it not working on GPU? Is it only related to the type of the vectors in the workspace (Vector{T}) ?
Vector{T}
Ok, I investigated, and it requires more than just making the array types generic. :(
We need some GPU kernels because some updates affect only specific coefficients in the vectors.
It's a full day's work.
No branches or pull requests
This operator is used in JSOSolvers https://github.com/JuliaSmoothOptimizers/JSOSolvers.jl/blob/5c08163ee594d8f8d7e12a98b14f4ed7cd22424e/src/lbfgs.jl#L87C3-L87C63 but nothing allows GPU computation
The text was updated successfully, but these errors were encountered: