(arr)
| 1615 | # The array should be large enough to likely run into threading issues |
| 1616 | arr = np.random.uniform(size=(5000, 4)).view(dt)[:, 0] |
| 1617 | def func(arr): |
| 1618 | arr.nonzero() |
| 1619 | |
| 1620 | tpe = ThreadPoolExecutor(max_workers=8) |
| 1621 | futures = [tpe.submit(func, arr) for _ in range(10)] |
no test coverage detected