(dep, ind)
| 1204 | |
| 1205 | |
| 1206 | def _unique_dep(dep, ind): |
| 1207 | # Append blockwise index information to dependency name |
| 1208 | return dep + "_" + "_".join(str(i) for i in list(ind)) |
| 1209 | |
| 1210 | |
| 1211 | def _can_fuse_annotations(a: dict | None, b: dict | None) -> bool: |
no test coverage detected
searching dependent graphs…