haasad / PyPardiso

Python interface to the Intel MKL Pardiso library to solve large sparse linear systems of equations
BSD 3-Clause "New" or "Revised" License
133 stars 20 forks source link

Add minimal tests to ensure pypardiso works with scipy sparse arrays #69

Closed haasad closed 6 months ago

haasad commented 6 months ago

This package is switching to an array interface, compatible with NumPy arrays, from the older matrix interface. We recommend that you use the array objects (bsr_array, coo_array, etc.) for all new work.

from https://docs.scipy.org/doc/scipy/reference/sparse.html#sparse-matrices-scipy-sparse

New tests are expected to fail until #67 is merged.