-
Notifications
You must be signed in to change notification settings - Fork 37
Description
I'm currently adding a new feature in qmat, to allows duplicates in interpolation points and handle that automatically (see current PR). This should be particularly useful for a new version of PFASST I'm investigating, that uses some global diagonal SDC on the coarse mesh, but requires also a global restriction operator that will have duplicates on the fine points.
To simplify the implementation in qmat, I used the numpy.unique_all function, which is only available with numpy>=2. However, currently pySDC still support numpy>=1.15.4, so I wonder ....
Can numpy requirement in pySDC be increased to numpy>=2, as this major release dates from 1 year ago already and had some non-backward compatibility changes that will make supporting prior versions more and more difficult ...