We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17fabd4 commit 6bb9b98Copy full SHA for 6bb9b98
tests/test_iwp.py
@@ -61,9 +61,10 @@ def test_preconditioned_system_matrices(dt, iwp):
61
)
62
assert jnp.allclose(precond @ precond_proc_noice_chol, non_precond_proc_noice_chol)
63
64
+
65
def test_projection_matrices(iwp):
66
P = iwp.make_projection_matrix(0)
67
assert isinstance(P, jnp.ndarray)
68
d, q = iwp.wiener_process_dimension, iwp.num_derivatives
- assert P.shape == (d, q+1)
69
+ assert P.shape == (d, q + 1)
70
assert (P == 1).sum() == d
0 commit comments