Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 761182d5 authored by hhakim's avatar hhakim
Browse files

cholesky test: temporary fix next to scipy 1.14 update (#341).

parent 8e623722
No related branches found
No related tags found
No related merge requests found
Pipeline #999472 passed
......@@ -26,7 +26,8 @@ if __name__ == '__main__':
for P, Pt in [(lambda x: D@x, lambda x: D.T.conj()@x),
(lambda x: np.matrix(FD@x),
lambda x: np.matrix(FD.H@x))]:
for s, R in enumerate([empty((0, 0)), csr_matrix((0, 0))]):
for s, R in enumerate([empty((0, 0))]):#, csr_matrix((0, 0))]):
# TODO: about comment, see issue
for i in range(1, len(I)+1):
R = UpdateCholesky(R[:i,:i], P, Pt, I[:i], 8193)
print("R:", R.shape, issparse(R))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment