Bas Nijholt

Results 218 issues of Bas Nijholt
trafficstars

#### ALL software version info (this library, plus any other relevant software, e.g. bokeh, python, notebook, OS, browser, etc) ``` import bokeh, holoviews bokeh.__version__, holoviews.__version__ ``` `('2.4.2', '1.14.8')` #### Description...

type: feature

I have checked this on large designs and found this to work more robustly. The previous algorithm failed when creating devices on different machines, where the arrays were basically identical,...

When using memoization (not with `functools.lru_cache` because https://github.com/joblib/loky/issues/268) I am unable to get `loky` to use the cache. I guess this is because `ex.submit(f, ...)` repickles `f` each time. Is...

This appears in https://github.com/python-adaptive/adaptive/issues/292. ```python from functools import lru_cache from loky.reusable_executor import get_reusable_executor @lru_cache def g(x): return x def f(x): return g(x) with get_reusable_executor() as ex: fut = ex.submit(f, 1)...

In this effort to support Loky for Adaptive (https://github.com/python-adaptive/adaptive/pull/263), we see that Loky fails in the CI for all Python 3.8 tests. See [these builds logs](https://dev.azure.com/python-adaptive/adaptive/_build/results?buildId=1211&view=logs&jobId=bcb552e4-0cf5-542f-3a73-40f52a3cab59&j=bcb552e4-0cf5-542f-3a73-40f52a3cab59&t=31f93f03-6a59-529c-985c-f676e7f9b74b). I see in this...

I am impressed with this package! In my field we very often do these loops over multiple dimensions and generate many curves for different dimensions. We (me and my colleagues)...

This package looks great! You seem to have implemented an interface on top of bokeh and matplotlib, are you aware of the existence of [`holoviews`](https://gitter.im/ioam/holoviews)? I think that using HoloViews...