You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While exploring scheduler improvements it was recently discovered that removing redundant string concatenations has a measurable performance increase. Tom noted that there currently were no isolated benchmarks which tested graph construction
We could do something similar to what was suggested in dask/dask#6137
In [2]: ddf_d=timeseries(start='2000-01-01', end='2002-01-01', partition_freq='1d')
In [3]: %timeitshuffle(ddf_d, "id", shuffle="tasks")
67.2ms ± 2.54msperloop (mean ± std. dev. of7runs, 10loopseach)
The text was updated successfully, but these errors were encountered:
While exploring scheduler improvements it was recently discovered that removing redundant string concatenations has a measurable performance increase. Tom noted that there currently were no isolated benchmarks which tested graph construction
We could do something similar to what was suggested in dask/dask#6137
The text was updated successfully, but these errors were encountered: