()
| 3884 | |
| 3885 | |
| 3886 | def test_from_delayed(): |
| 3887 | v = delayed(np.ones)((5, 3)) |
| 3888 | x = from_delayed(v, shape=(5, 3), dtype=np.ones(0).dtype) |
| 3889 | assert isinstance(x, Array) |
| 3890 | assert_eq(x, np.ones((5, 3))) |
| 3891 | |
| 3892 | |
| 3893 | def test_from_delayed_meta(): |
nothing calls this directly
no test coverage detected