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
from dask.distributed import Client, progress, LocalCluster
client = LocalCluster()
client
It will then give you a URL to click to watch all the cores being used on your machine.
This is essentially the method used in the pangeo example notebooks with xarray - I really need to try a MemoryError-inducing task using both xarray and iris on the NCI virtual desktop environment.
One major new feature of Iris 2.0.0 was dask integration.
To activate dask in your scripts, add the following:
This puts you in sequential mode. If you want to try to profit from speedup through parallelisation you might try:
which would give you parallelisation based on multiprocessing instead of multithreading that should not suffer from the same problem.
The text was updated successfully, but these errors were encountered: