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
Presumably linked to the new Dask version? Are we OK with this? Less than 1 millisecond, even for highly scaled examples (e.g. time_indices(1000000)).
It is interesting that it doesn't scale with the number of points. It implies that perhaps it is something to do with the setting up of the lazy array (with dask as you say) and the only reason these benchmarks caught it is because they are so fast?
If that were the case it seems like this change is very minimal and not to be worried about
@lbdreyer doesn't scale with the number of points.
From my reading, it is not actually actually reading any data since the test example is made from a numpy array.
So it is like da.from_array(np.array(...)).compute(), which simply returns the underlying array object. No copying or moving data is involved.
>>> import numpy as np
>>> import dask.array as da
>>> np1 = np.arange(24.).reshape((4,3,2))
>>> da1 = da.from_array(np1)
>>> da1.compute() is np1
True
>>>
Benchmark comparison has identified performance shifts at
Please review the report below and take corrective/congratulatory action as appropriate 🙂
Performance shift report
Generated by GHA run
4227658143
The text was updated successfully, but these errors were encountered: