(self, **kwargs)
| 383 | self._cache.clear() |
| 384 | |
| 385 | def _plot(self, **kwargs): |
| 386 | from dask.diagnostics.profile_visualize import plot_cache |
| 387 | |
| 388 | return plot_cache( |
| 389 | self.results, |
| 390 | self._dsk, |
| 391 | self.start_time, |
| 392 | self.end_time, |
| 393 | self._metric_name, |
| 394 | **kwargs, |
| 395 | ) |
| 396 | |
| 397 | def visualize(self, **kwargs): |
| 398 | """Visualize the profiling run in a bokeh plot. |
nothing calls this directly
no test coverage detected