(self)
| 58 | return f"{prefix}-{self.deterministic_token}" |
| 59 | |
| 60 | def _layer(self): |
| 61 | dsk = dict(self.operand("layer")) |
| 62 | # The name may not actually match the layers name therefore rewrite this |
| 63 | # using an alias |
| 64 | for new, old in zip(self.__dask_keys__(), self.operand("keys")): |
| 65 | dsk[new] = Alias(new, old) |
| 66 | return dsk |
| 67 | |
| 68 | |
| 69 | class BlockwiseIO(Blockwise, IO): |
nothing calls this directly
no test coverage detected