Replies: 1 comment 18 replies
-
I think you're running into #5629 . There is a reshape operation that is extremely inefficient. It might work better if your chunk sizes are small along time and large in space. |
Beta Was this translation helpful? Give feedback.
18 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to perform these two operations in succession on a 3d array with dimensions
(t,y,x)
:(i) detrend along
t
(ii) rolling mean along
t
I get memory related failures if the size along the
t
dimension becomes too large even though I think I have sufficient memory. That is, the progress bars in the dask dashboard show many "erred" processes and the kernel dies midway. Here is some stand-alone code that mimics what I am trying to with comparable array sizes:Any suggestions on why the above fails? Thanks.
Beta Was this translation helpful? Give feedback.
All reactions