The issue pops up in CI periodically, like [here](https://github.com/pymor/pymor/actions/runs/10962452794/job/30441724328?pr=2360). The following code snippet reproduces the issue for me on Linux with PyPI packages: ```python import numpy as np from pymortests.algorithms.samdp import conv_diff_1d_fd from pymor.algorithms.samdp import samdp from pymor.operators.numpy import NumpyMatrixOperator def test_samdp(n, m, k, wanted, which, rng): A = conv_diff_1d_fd(n, 1, 1) Eop = None B = rng.standard_normal((n, m)) C = rng.standard_normal((k, n)) Aop = NumpyMatrixOperator(A) Bva = Aop.source.from_numpy(B.T) Cva = Aop.source.from_numpy(C) return samdp(Aop, Eop, Bva, Cva, wanted, which=which) rng = np.random.default_rng(595) test_samdp(50, 1, 3, 15, 'NR', rng) ``` @lbalicki, any ideas?