When I am trying to access it getting error-
MemoryError: Unable to allocate 93.5 TiB for an array with shape (43, 96, 192, 220, 4, 96, 192) and data type float64
I think something is going wrong here that is causing the dimensionality of the data to explode. The total array size is 37 PB! Not possible–all of CMIP6 is “only” 20 PB.
Can you post the xarray reprs of the dataset cl_ds and cl_wt_avg_low?
Thanks, @dcherian, and @rabernat for your replies. I could fix this issue. When I was calculating weights based on vertical thickness, cl_weights=geocat.comp.dpres_plevel(pressure_levels,cl_ds.ps,pressure_top)
It was adding new dimensions, dim0-dim2 instead of standard dimension so when I applied these weights to calculate means.
cl_wt_avg_low=cl_low.weighted(cl_weights).mean(dim=‘plev’)
It became 7 dimensional array and blew up. I fixed the dimensions of cl_weights and it is working fine now.