-
Notifications
You must be signed in to change notification settings - Fork 20
Performance improvements for cohorts detection #172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
5c4c7a3
Faster unique
dcherian a46078d
SeriesGroupBy.unique to get blocks for each label.
dcherian d73eb49
Add cohorts benchmark
dcherian 3491e76
Add empty cache if cachey is absent
dcherian 820d477
Always initialize cache
dcherian f49e214
Guard cache clear
dcherian a39c00d
Add numtasks benchmark
dcherian 9cb65f4
Update asv_bench/benchmarks/cohorts.py
dcherian File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import dask | ||
import numpy as np | ||
import pandas as pd | ||
|
||
import flox | ||
|
||
|
||
class Cohorts: | ||
"""Time the core reduction function.""" | ||
|
||
def setup(self, *args, **kwargs): | ||
raise NotImplementedError | ||
|
||
def time_find_group_cohorts(self): | ||
flox.core.find_group_cohorts(self.by, self.array.chunks) | ||
# The cache clear fails dependably in CI | ||
# Not sure why | ||
try: | ||
flox.cache.cache.clear() | ||
except AttributeError: | ||
pass | ||
|
||
def time_graph_construct(self): | ||
flox.groupby_reduce(self.array, self.by, func="sum", axis=self.axis, method="cohorts") | ||
|
||
def track_num_tasks(self): | ||
result = flox.groupby_reduce( | ||
self.array, self.by, func="sum", axis=self.axis, method="cohorts" | ||
)[0] | ||
return len(result.dask.to_dict()) | ||
|
||
track_num_tasks.unit = "tasks" | ||
|
||
|
||
class NWMMidwest(Cohorts): | ||
"""2D labels, ireregular w.r.t chunk size. | ||
Mimics National Weather Model, Midwest county groupby.""" | ||
|
||
def setup(self, *args, **kwargs): | ||
x = np.repeat(np.arange(30), 150) | ||
y = np.repeat(np.arange(30), 60) | ||
self.by = x[np.newaxis, :] * y[:, np.newaxis] | ||
|
||
self.array = dask.array.ones(self.by.shape, chunks=(350, 350)) | ||
self.axis = (-2, -1) | ||
|
||
|
||
class ERA5(Cohorts): | ||
"""ERA5""" | ||
|
||
def setup(self, *args, **kwargs): | ||
time = pd.Series(pd.date_range("2016-01-01", "2018-12-31 23:59", freq="H")) | ||
|
||
self.by = time.dt.dayofyear.values | ||
self.axis = (-1,) | ||
|
||
array = dask.array.random.random((721, 1440, len(time)), chunks=(-1, -1, 48)) | ||
self.array = flox.core.rechunk_for_cohorts( | ||
array, -1, self.by, force_new_chunk_at=[1], chunksize=48, ignore_old_chunks=True | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.