Alec Thomson
Alec Thomson
Hi @jacobtomlinson - sorry for not being more transparent, I recreated this question here even with that answer in place. I don't think the current answer addresses the problem, which...
Hi @guillaumeeb, Thanks very much for following up! > First, simple question: do you really need adaptive scaling? I would very much like to make use of the features, if...
+1 on this feature. Would really love to have it for `tqdm` usage. Thanks!
Hey @IncubatorShokuhou, I've had similar problems on a couple of different SC systems. I've found that exactly which MPI executable you call, and how mpi4py is installed makes a big...
@PaulHancock what versions of Numpy and Numba are you rocking?
Ah sorry @PaulHancock, I remembered some extra steps to get this to work. Using Numba and Numpy-FFT also requires [rocket-fft](https://github.com/styfenschaer/rocket-fft). It's a little sneaky since no import is required! So...
Thanks, @jacobtomlinson. I added the line: ```python print('sys.exec', sys.executable) ``` to the worker function. Using both `dask-mpi` and a `LocalCluster` I get: ``` sys.exec /group/askap/athomson/miniconda3/envs/spice/bin/python3.8 ``` which is the conda...
Thanks, @ste616. The same is true for me as well, actually. The MCVE also runs fine for me, which is part of my confusion. There might be some conflict between...
EDIT: I've also found that the above problem (with u.hourangle) persists even when the function is not delayed (but still using dask-mpi) As an update, it looks like the issue...
I'm pretty sure that's the case. I'm using a locally installed conda environment. As a test I added: ```python print("I'm in the {func} function!",'dask.__version__', dask.__version__) print("I'm in the {func} function!",'dask.__file__',...