You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the rank-1 modifications cholupdates.rank_1.update_seeger and cholupdates.rank_1.downdate_seeger only support arrays which lie contiguous in memory.
This can be changed by reading the array strides from the numpy properties.
This will also get rid of the inelegant distinction between Fortran and C contiguous arrays, since we will consider general strides.
The text was updated successfully, but these errors were encountered:
Currently, the rank-1 modifications
cholupdates.rank_1.update_seeger
andcholupdates.rank_1.downdate_seeger
only support arrays which lie contiguous in memory.This can be changed by reading the array strides from the numpy properties.
This will also get rid of the inelegant distinction between Fortran and C contiguous arrays, since we will consider general strides.
The text was updated successfully, but these errors were encountered: