(self, **kwargs)
| 90 | self._results.clear() |
| 91 | |
| 92 | def _plot(self, **kwargs): |
| 93 | from dask.diagnostics.profile_visualize import plot_tasks |
| 94 | |
| 95 | return plot_tasks( |
| 96 | self.results, self._dsk, self.start_time, self.end_time, **kwargs |
| 97 | ) |
| 98 | |
| 99 | def visualize(self, **kwargs): |
| 100 | """Visualize the profiling run in a bokeh plot. |
no test coverage detected