We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We materialize a matrix M in build_reduced_problem only for an inner product x^T M y in the next function.
M
build_reduced_problem
x^T M y
This matrix cannot be used in-place because its size depends on the number of atoms in the current active set.
Instead of building it, we should create a custom matrix type that:
dot(x, M, y)
The text was updated successfully, but these errors were encountered:
sebastiendesignolle
No branches or pull requests
We materialize a matrix
M
inbuild_reduced_problem
only for an inner productx^T M y
in the next function.This matrix cannot be used in-place because its size depends on the number of atoms in the current active set.
Instead of building it, we should create a custom matrix type that:
dot(x, M, y)
by looping through the active setThe text was updated successfully, but these errors were encountered: