Skip to content

Commit

Permalink
Skip dask rolling
Browse files Browse the repository at this point in the history
  • Loading branch information
Illviljan committed Dec 18, 2024
1 parent 29bea84 commit 2f98260
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions asv_bench/benchmarks/rolling.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ def time_rolling_construct(self, center, stride, use_bottleneck):
).sum(dim="window_dim").load()


class RollingDask(Rolling):
def setup(self, *args, **kwargs):
requires_dask()
super().setup(**kwargs)
self.ds = self.ds.chunk({"x": 100, "y": 50, "t": 50})
self.da_long = self.da_long.chunk({"x": 10000})
# class RollingDask(Rolling):
# def setup(self, *args, **kwargs):
# requires_dask()
# super().setup(**kwargs)
# self.ds = self.ds.chunk({"x": 100, "y": 50, "t": 50})
# self.da_long = self.da_long.chunk({"x": 10000})


class RollingMemory:
Expand Down

0 comments on commit 2f98260

Please sign in to comment.