()
| 3894 | |
| 3895 | |
| 3896 | def test_from_delayed(): |
| 3897 | v = delayed(np.ones)((5, 3)) |
| 3898 | x = from_delayed(v, shape=(5, 3), dtype=np.ones(0).dtype) |
| 3899 | assert isinstance(x, Array) |
| 3900 | assert_eq(x, np.ones((5, 3))) |
| 3901 | |
| 3902 | |
| 3903 | def test_from_delayed_meta(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…