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
Describe the issue
Since scipy 1.8 (released in May 2022), csr_array is the preferred sparse array constructor. We should aim towards using this version as a base.
csr_array
However, there are some issues this will entail:
eye
kron
diags
csr_matrix
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the issue
Since scipy 1.8 (released in May 2022),
csr_array
is the preferred sparse array constructor. We should aim towards using this version as a base.However, there are some issues this will entail:
eye
,kron
,diags
are not implemented in scipy forcsr_array
. And aren't in 1.12 either. So we will have to work around this issue regardless.csr_matrix
, so the changes should be rather minimal in this sense.The text was updated successfully, but these errors were encountered: