MCPcopy Index your code
hub / github.com/dask/dask / __dask_tokenize__

Method __dask_tokenize__

dask/array/_array_expr/_blockwise.py:124–138  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

122 return super().dtype
123
124 def __dask_tokenize__(self):
125 if not self._determ_token:
126 # TODO: Is there an actual need to overwrite this?
127 self._determ_token = _tokenize_deterministic(
128 self.func,
129 self.out_ind,
130 self.dtype,
131 self.adjust_chunks,
132 self.new_axes,
133 self.align_arrays,
134 self.concatenate,
135 *self.args,
136 **self.kwargs,
137 )
138 return self._determ_token
139
140 @cached_property
141 def _name(self):

Callers

nothing calls this directly

Calls 1

_tokenize_deterministicFunction · 0.90

Tested by

no test coverage detected