()
| 346 | |
| 347 | |
| 348 | def test_inline_cull_dependencies(): |
| 349 | d = {"a": 1, "b": "a", "c": "b", "d": ["a", "b", "c"], "e": (add, (len, "d"), "a")} |
| 350 | |
| 351 | d2, dependencies = cull(d, ["d", "e"]) |
| 352 | inline(d2, {"b"}, dependencies=dependencies) |
| 353 | |
| 354 | |
| 355 | def test_fuse_reductions_single_input(): |