Vyas Ramasubramani
Vyas Ramasubramani
I agree, making the memory resource an optional constructor parameter would be useful. I don't think we should get rid of the default behavior though, at least not in the...
Apologies, I spent a lot of time trying to strip these issues down into easily reproducible MWEs and conveniently forgot to post tracebacks :) I'll remember (if there is a)...
I can help as well if you need extra hands.
@allisonvacanti what's next here? NVIDIA/thrust#14 helped close the gap, but I don't recall exactly how far it got us or what we still need to do. RAPIDS is making a...
I assume the changes you're referring to are NVIDIA/thrust#70? It looks great! 🎉 @robertmaynard @jrhemstad @harrism any thoughts on what we would need to see in nvbench to make the...
I think option 2 is the realistic long-term solution that pretty much all engines take, and it's a matter if deciding how to draw the lines. As someone from the...
For completeness, here's a MWE: ``` # pyproject.toml [tool.pydocstyle] select = D30 ``` ``` # .pre-commit-config.yaml repos: - repo: https://github.com/PyCQA/pydocstyle rev: 6.1.1 hooks: - id: pydocstyle ``` ``` # test.py...
@rmatsum836 pytest works fine with hypothesis. If you want to see some examples, I use hypothesis extensively in the [coxeter](https://github.com/glotzerlab/coxeter) library I maintain. There are a couple of subtle gotchas...
@ahy3nz has the right idea here. The issue is that objects must be serialized prior to distribution across processes. I wouldn't consider this solution particularly inelegant, tbh it's a pretty...
Michael is asking whether this documentation should be placed inside `docs/source` so that it can be compiled along with the Sphinx documentation and made visible online, as opposed to being...