Erik Welch
Erik Welch
It should find `rtoml` in the conda-forge channel. Did you forget to add `-c conda-forge`? I don't see `changelist` available from conda-forge, so maybe the directions using conda don't currently...
Thanks @dschult, it would be great to see progress on this front. I would find examples (and more organization) helpful. CSR (and CSC) can be "not great" at times if...
> To avoid the whole DCSR vs CSR, it'd be good to have the adjacency only describe nodes that are connected (and for directed graphs, only the nodes with successors...
`_dispatchable._convert_and_call_for_tests` does a lot more when running tests. Some examples: - #7282 checks results for numpy scalars - this is _brutal_ - #7066 compares results for functions that return graphs...
I just saw this issue. The loopback graph classes use the dispatching metadata that indicate what data is used. For example, if only `"weight"` edge attribute is used, then only...
Thanks for taking a close look and asking good questions. `G1` here is not a backend graph--it is a networkx graph having been converted via `convert_to_nx`--so we can safely assume...
Good to know. Would that run in the user's thread? Specifically, would low-tech debugging such as break points and `%debug` in IPython work? When running serially, I would like to...
Great. Integrating with a Tornado loop would allow for cooperative multitasking. Is there any other advantage versus writing a simple Client class that executes things in FIFO order? Part of...
Thanks for the discussion. I think there's enough benefit to support both ways.
#13 gives us a client API to use within `dask-patternsearch` (it also implements the simple serial client). If I understand correctly, though, one can get the behavior you want by...