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
I was trying to compute the density equation (for sigma_2) using SOSE model data and fastjmd95, but ran into some performance issues, particularly with this line:
Workers (using 30 max) would die off for some reason. This lead to running a matrix of computations to try and isolate the underlying problem - is it just xr.apply_ufunc() having difficulty, or a combination of ufunc() and jmd95?
I was trying to compute the density equation (for sigma_2) using SOSE model data and fastjmd95, but ran into some performance issues, particularly with this line:
Workers (using 30 max) would die off for some reason. This lead to running a matrix of computations to try and isolate the underlying problem - is it just xr.apply_ufunc() having difficulty, or a combination of ufunc() and jmd95?
Please see my nb for full view of issue at hand and run times of the following options: https://nbviewer.jupyter.org/github/ocean-transport/WMT-project/blob/master/SOSE-budgets/optimization-computing-issue.ipynb
xr.apply_ufunc()
dsa.map_blocks()
xr.map_blocks()
fastjmd95
.sum()
) to check iffastjmd95
is also having issues)Run times:
xr.apply_ufunc()
-fastjmd95
-model dataxr.apply_ufunc()
-fastjmd95
-randomized dataxr.apply_ufunc()
-sum()
-model dataxr.apply_ufunc()
-sum()
-randomized datadsa.map_blocks()
-fastjmd95
-model datadsa.map_blocks()
-fastjmd95
-randomized datadsa.map_blocks()
-sum()
-model datadsa.map_blocks()
-sum()
-randomized dataPlease help in trying to figure out what's going on.
The text was updated successfully, but these errors were encountered: