(shape, n_arrays)
| 42 | |
| 43 | |
| 44 | def random_array(shape, n_arrays): |
| 45 | for _ in range(n_arrays): |
| 46 | yield np.random.rand(*shape) |
| 47 | |
| 48 | |
| 49 | class TestUtils(unittest.TestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…