(self)
| 277 | } |
| 278 | |
| 279 | def __dask_tokenize__(self): |
| 280 | if not self._determ_token: |
| 281 | # TODO: Is there an actual need to overwrite this? |
| 282 | self._determ_token = _tokenize_deterministic( |
| 283 | self.func, self.array, self.split_every, self.keepdims, self.dtype |
| 284 | ) |
| 285 | return self._determ_token |
| 286 | |
| 287 | @cached_property |
| 288 | def _name(self): |
nothing calls this directly
no test coverage detected