Skip to content
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

Support batch inputs #11

Open
sbarratt opened this issue Sep 9, 2020 · 0 comments
Open

Support batch inputs #11

sbarratt opened this issue Sep 9, 2020 · 0 comments

Comments

@sbarratt
Copy link

sbarratt commented Sep 9, 2020

Eg

A = sparse.eye(5)
s = qdldl.Solver(A)
rhs = np.random.randn(5, 2)
s.solve(rhs)

The pure python implementation would be something like
[s.solve(rhs[:,i]) for i in range(rhs.shape[1])]

Most of the numpy/scipy solve commands support this so it might be nice.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant