Miguel Cárcamo

Results 6 comments of Miguel Cárcamo

I know this may not have anything to do with this issue. However, I am curious about if anyone have been able to program a bilinear interpolation using dask? I'm...

@phobson Yes, exactly - it's about to work around dask's fancy indexing. I have been told to use `map_overlap` but I'm not quite sure how to use it to do...

@phobson I have tried with map_blocks and it seems to work. However, I have changed my bilinear_interpolation function a little bit. ```python import dask.array as da import numpy as np...

@phobson ``` import numpy as np import dask.array as da grid_fft = da.random.random((3000,3000)) + 1j * da.random.random((3000,3000)) u = da.random.randint(0, 3000, 48959) + da.random.random(48959) v = da.random.randint(0, 3000, 48959) +...

@phobson I have already posted this question on the dask discourse, but nobody seems to answer :)

what if I want to use it just in C++/CUDA? It should work despite my version of pywavelets right?